import { CommandMeta } from "../types.mjs"; //#region src/codegen/parsers/zsh.d.ts /** * Parse zsh completion function definitions into CommandMeta. * * Zsh completions typically use _arguments or compadd: * _arguments \ * '-v[verbose mode]' \ * '--output=[output file]:filename:_files' \ * '1:command:(start stop restart)' */ declare function parseZshCompletions(text: string): CommandMeta; //#endregion export { parseZshCompletions }; //# sourceMappingURL=zsh.d.mts.map