import type { TypescriptImport } from './typescript-import'; import type { TypescriptSourceFileId } from './typescript-source-file-id'; export declare class TypescriptSourceFile { readonly id: TypescriptSourceFileId; readonly imports: TypescriptImport[]; readonly namedExports: string[]; readonly defaultExport: boolean; readonly code: string; constructor(id: TypescriptSourceFileId, imports: TypescriptImport[], namedExports: string[], defaultExport: boolean, code: string); }