import type { Command, DescriptionOrOpts } from "./types.ts";
import pc from "picocolors";
export declare const CLI: {
    command: (name: string, options: DescriptionOrOpts) => Command;
    parse: (argv?: string[]) => Promise<unknown>;
    _state: {
        commands: Record<string, Command>;
    };
    meta: {
        name: string;
        dir: string;
        version: string;
        aliases: Record<string, string>;
    };
};
export { pc };
