import { CommandTypesBase } from "../types/command.mjs"; //#region src/extension/color.d.ts /** * Extension that handles `--color` / `--no-color` flags: * - `--color` or `--color=true` → use default theme * - `--color=false` or `--no-color` → disable colors (text format) * - `--color=` → use the named theme * * Modifies the runtime's format and theme accordingly. * * Usage: * ```ts * createPadrone('my-cli').extend(padroneColor()) * ``` */ declare function padroneColor(): (builder: T) => T; //#endregion export { padroneColor }; //# sourceMappingURL=color.d.mts.map