interface CompilerOptions {
    noUnusedParameters: boolean;
    noUnusedLocals: boolean;
    strictNullChecks: boolean;
    target: string;
    jsx: string;
    moduleResolution: string;
    declaration: boolean;
    allowSyntheticDefaultImports: boolean;
    [key: string]: unknown;
}
export default function (): CompilerOptions;
export {};
