export type CliOptions = {
    rule?: string[];
    preset?: string[];
    plugin?: string[];
    config?: string;
    rulesdir?: string[];
    format: string;
    quiet: boolean;
    color: boolean;
    textlintrc: boolean;
    cache: boolean;
    cacheLocation: string;
    rulesBaseDirectory?: string;
    ignorePath: string;
    help: boolean;
    init: boolean;
    fix: boolean;
    dryRun: boolean;
    debug: boolean;
    printConfig: boolean;
    stdin: boolean;
    stdinFilename?: string;
    version: boolean;
    outputFile: string;
    experimental: boolean;
    mcp: boolean;
    _: string[];
};
export declare const options: {
    generateHelp(): string;
    parse(argv: string | Array<string>): CliOptions;
};
//# sourceMappingURL=options.d.ts.map