import type { CompilerOptions } from 'typescript';
export type TsconfigLoadContext = {
    cwd?: string;
    name?: string;
};
export type TsCompilerOptions = CompilerOptions;
export type TsConfig = {
    compilerOptions?: TsCompilerOptions;
    [key: string]: any;
};
//# sourceMappingURL=type.d.ts.map