import { CommandTypesBase } from "../types/command.mjs"; //#region src/extension/interactive.d.ts /** * Extension that handles interactive prompting for missing arguments. * Extracts `--interactive` / `-i` flags, resolves effective interactivity, * and prompts for missing fields before passing filled args to validation. * * Usage: * ```ts * createPadrone('my-cli').extend(padroneInteractive()) * ``` */ declare function padroneInteractive(): (builder: T) => T; //#endregion export { padroneInteractive }; //# sourceMappingURL=interactive.d.mts.map