import tsStatic from 'typescript';
/**
 * Exposes the API to parse typescript config
 */
export declare class ConfigParser {
    private cwd;
    private configFileName;
    private ts;
    constructor(cwd: string, configFileName: string, ts: typeof tsStatic);
    /**
     * Parses the typescript config file
     */
    parse(optionsToExtend?: tsStatic.CompilerOptions): {
        error: tsStatic.Diagnostic | null;
        config?: tsStatic.ParsedCommandLine;
    };
}
