#!/usr/bin/env node
declare const cli: import("meow").Result<{
    fix: {
        type: "boolean";
        default: false;
    };
    fixDryRun: {
        type: "boolean";
        default: false;
    };
    reporter: {
        type: "string";
    };
    space: {
        type: "string";
    };
    configPath: {
        type: "string";
        aliases: string[];
    };
    quiet: {
        type: "boolean";
    };
    semicolon: {
        type: "boolean";
    };
    prettier: {
        type: "boolean";
    };
    react: {
        type: "boolean";
        default: false;
    };
    cwd: {
        type: "string";
        default: string;
    };
    printConfig: {
        type: "string";
    };
    version: {
        type: "boolean";
    };
    stdin: {
        type: "boolean";
    };
    stdinFilename: {
        type: "string";
        default: string;
    };
    open: {
        type: "boolean";
    };
    ignore: {
        type: "string";
        isMultiple: true;
        aliases: string[];
    };
}>;
export type CliOptions = typeof cli;
export {};
