import { Command } from "commander"; /** * Creates the `skaile complete` command. * * Provides shell tab-completion support. With `--shell zsh|bash|fish` outputs * a shell script for `eval`. With `-- ` returns newline- * separated completion candidates at tab time. * * @param program - The root Commander program instance (used for static tree walk). * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/misc#complete */ export declare function makeCompleteCommand(program: Command): Command; //# sourceMappingURL=complete.d.ts.map