export type CompletionShell = 'bash' | 'zsh' | 'fish' | 'powershell';
export declare function isCompletionRequest(): boolean;
export declare function getCompletionShell(): CompletionShell | null;
