export declare const tsConfigTemplate: {
    "compilerOptions": {
        "target": string;
        "moduleResolution": string;
        "module": string;
        "importHelpers": boolean;
        "strict": boolean;
        "declaration": boolean;
        "noEmit": boolean;
        "rootDir": string;
        "jsx": string;
        "jsxFactory": string;
        "experimentalDecorators": boolean;
        "emitDecoratorMetadata": boolean;
        "strictPropertyInitialization": boolean;
        "sourceMap": boolean;
        "lib": string[];
    };
    "exclude": string[];
    "include": string[];
};
