declare const tsconfig: {
    compilerOptions: {
        target: string;
        module: string;
        lib: string[];
        allowJs: boolean;
        declaration: boolean;
        declarationMap: boolean;
        outDir: string;
        rootDir: string;
        removeComments: boolean;
        isolatedModules: boolean;
        strict: boolean;
        noImplicitAny: boolean;
        strictPropertyInitialization: boolean;
        noImplicitThis: boolean;
        moduleResolution: string;
        types: string[];
        esModuleInterop: boolean;
        experimentalDecorators: boolean;
        emitDecoratorMetadata: boolean;
        skipLibCheck: boolean;
        forceConsistentCasingInFileNames: boolean;
        resolveJsonModule: boolean;
    };
    exclude: string[];
};
export default tsconfig;
//# sourceMappingURL=tsconfig.d.ts.map