import { type CompletionShell } from '../render/completion/index.js'; export interface DetectShellOptions { env?: NodeJS.ProcessEnv; ancestors?: () => string[]; } export declare const detectShell: ({ env, ancestors, }?: DetectShellOptions) => CompletionShell | null;