import { default as ts } from 'typescript';
type Options = {
    configName: string;
    verbose: boolean;
};
type Return = Promise<{
    parsedConfig: ts.ParsedCommandLine;
    configFilePath: string;
}>;
export declare const parseConfig: (options: Options) => Return;
export {};
