import type { Setup } from "../types/common";
declare const tsconfigJSON: ({ strict }: Setup) => {
    compilerOptions: {
        target: string;
        module: string;
        removeComments: boolean;
        declaration: boolean;
        outDir: string;
        preserveConstEnums: boolean;
        strict: boolean;
        allowSyntheticDefaultImports: boolean;
        moduleResolution: string;
        forceConsistentCasingInFileNames: boolean;
        importHelpers: boolean;
    };
    include: string[];
    exclude: string[];
};
export default tsconfigJSON;
