export interface TypeCheckResult { ok: boolean; diagnostics: string[]; fileCount: number; } /** * Type-check a .d.ts content string by writing to a temp file and running tsc. */ export declare function typecheckDTS(content: string): Promise; //# sourceMappingURL=typecheck.d.ts.map