import { StyleType, SummaryType, LineMatchingType, FormatType, InputType, OutputType, DiffyType } from "./types";
export interface Argv {
    style: StyleType;
    synchronisedScroll: boolean;
    summary: SummaryType;
    matching: LineMatchingType;
    matchWordsThreshold: number;
    matchingMaxComparisons: number;
    format: FormatType;
    input: InputType;
    output: OutputType;
    diffy?: DiffyType;
    file?: string;
    htmlWrapperTemplate?: string;
    ignore?: string[];
    extraArguments: string[];
    coverage: string;
    coverageFilePatterns: string;
}
export declare function setup(): Argv;
export declare function help(): void;
//# sourceMappingURL=yargs.d.ts.map