//#region src/lib/completion-scripts.d.ts /** * Generates a bash completion script for the given CLI name. */ declare function bashCompletionScript(cliName: string): string; /** * Generates a zsh completion script for the given CLI name. */ declare function zshCompletionScript(cliName: string): string; /** * Generates a fish completion script for the given CLI name. */ declare function fishCompletionScript(cliName: string): string; /** * Generates a PowerShell completion script for the given CLI name. */ declare function powershellCompletionScript(cliName: string): string; /** * Auto-detect available shells and install completion scripts. */ declare function installCompletionScripts(cliName: string): Promise; //#endregion export { bashCompletionScript, fishCompletionScript, installCompletionScripts, powershellCompletionScript, zshCompletionScript }; //# sourceMappingURL=completion-scripts.d.mts.map