/// //@module: commonjs //@jsx: preserve //// declare module JSX { //// interface Element { } //// interface IntrinsicElements { //// } //// interface ElementAttributesProperty { props; } //// } //@Filename: exporter.tsx //// export class Thing { props: { ONE: string; TWO: number } } //// export module M { //// export declare function SFCComp(props: { Three: number; Four: string }): JSX.Element; //// } //@Filename: file.tsx //// import * as Exp from './exporter'; //// var x1 = ; //// var x2 = ; //// var x3 = ; //// var x4 = ; verify.completions( { marker: ["1", "3"], exact: ["ONE", "TWO"] }, { marker: ["2", "4"], exact: ["Three", "Four"] }, );