export type Option = {
    type: BooleanConstructor | StringConstructor | NumberConstructor;
    aliases: string[];
    desc: string;
    appliesTo: string[];
};
export type Spec = {
    '--help'?: boolean;
    '--version'?: string;
    '--host'?: string;
    '--insecure'?: boolean;
    '--config'?: string;
    _: string[];
};
export declare const commands: string[];
export declare const argsSpec: {
    '--help': {
        type: BooleanConstructor;
        aliases: never[];
        desc: string;
        appliesTo: string[];
    };
    '--version': {
        type: BooleanConstructor;
        aliases: never[];
        desc: string;
        appliesTo: string[];
    };
    '--host': {
        type: StringConstructor;
        aliases: string[];
        desc: string;
        appliesTo: string[];
    };
    '--insecure': {
        type: BooleanConstructor;
        aliases: string[];
        desc: string;
        appliesTo: string[];
    };
    '--config': {
        type: StringConstructor;
        aliases: string[];
        desc: string;
        appliesTo: string[];
    };
};
//# sourceMappingURL=args-spec.d.ts.map