import type ts from 'typescript'; export declare enum SourceKind { Record = 0, File = 1, Raw = 2 } export interface Source { readonly kind: SourceKind; getOptions(): SourceOptions | undefined; toString(): string; } export interface SourceOptions { compilerOptions?: ts.CompilerOptions; ignoreProjectOptions?: boolean; baseUrl?: string; raw?: string; } export interface RecordTypeDeclaration { params?: string[]; definition: string; } //# sourceMappingURL=types.d.ts.map