import ts from 'typescript'; export interface Options { include?: string; exclude?: string; tsConfig?: string; transformers?: ts.CustomTransformers; compilerOptions?: ts.CompilerOptions; readFile?: (path: string) => string | undefined; } export type Transform = (code: string, fileName: string) => { code: string; map?: string; } | undefined; export declare function deepkitType(options?: Options): Transform;