#!/usr/bin/env node
import type { Args } from "./types";
export declare const cliOptions: {
    "exclude-packages": {
        description: string;
        type: string;
        requiresArg: boolean;
    };
    init: {
        description: string;
        choices: string[];
        conflicts: string[];
    };
    loose: {
        default: boolean;
        description: string;
        type: string;
    };
    "migrate-config": {
        default: boolean;
        description: string;
        type: string;
    };
    presets: {
        description: string;
        type: string;
        requiresArg: boolean;
    };
    requirements: {
        description: string;
        type: string;
        requiresArg: boolean;
    };
    "set-version": {
        description: string;
        type: string;
        conflicts: string[];
    };
    verbose: {
        default: boolean;
        description: string;
        type: string;
    };
    write: {
        default: boolean;
        description: string;
        type: string;
    };
};
export declare function cli({ packages, ...args }: Args): Promise<void>;
//# sourceMappingURL=cli.d.ts.map