import type { Command } from "commander"; import type { CommandContext } from "../../types.js"; export type CompletionShell = "bash" | "zsh" | "fish" | "powershell"; export declare function runCompletion(shell: CompletionShell, context: CommandContext): number; export declare function runCompletionCandidates(root: Command, words: string[], context: CommandContext): Promise; //# sourceMappingURL=action.d.ts.map