type CliCommandContext = { command?: string; subcommand?: string; flags?: string[]; interactive?: boolean; help?: boolean; }; type CliSentry = { enabled: boolean; setCommandContext: (update: Partial) => void; setCommandContextFromArgv: (argv: { _: Array; }) => void; captureException: (error: unknown) => void; flush: (timeoutMs?: number) => Promise; }; export declare function initCliSentry(args: string[]): CliSentry; export {};