export declare const c: { showColor: boolean; colorize: (color: string, str: string) => string; error: (str: string) => string; warning: (str: string) => string; success: (str: string) => string; info: (str: string) => string; strong: (str: string) => string; careful: (str: string) => string; example: (str: string) => string; binColor: (str: string) => string; }; export declare enum Option { list = "list", conflictsOnly = "conflictsOnly", dest = "dest", caseInsensitive = "caseInsensitive", force = "force", unwrap = "unwrap", echoPaths = "echoPaths", strip = "strip", quiet = "quiet", prefix = "prefix", colors = "colors", debug = "debug", help = "help", version = "version" } export declare const helpText: string; export declare function getCli(argv?: string[]): import("meow").Result<{ list: { type: "boolean"; shortFlag: string; }; conflictsOnly: { type: "boolean"; shortFlag: string; }; dest: { type: "string"; shortFlag: string; default: string; }; caseInsensitive: { type: "boolean"; shortFlag: string; }; force: { type: "boolean"; shortFlag: string; }; unwrap: { type: "boolean"; shortFlag: string; }; echoPaths: { type: "boolean"; shortFlag: string; }; strip: { type: "number"; shortFlag: string; }; quiet: { type: "boolean"; shortFlag: string; default: false; }; prefix: { type: "boolean"; default: true; }; colors: { type: "boolean"; default: boolean; }; debug: { type: "boolean"; }; help: { type: "boolean"; shortFlag: string; }; version: { type: "boolean"; shortFlag: string; }; }>; //# sourceMappingURL=cli.d.mts.map