export type CliMode = 'interactive' | 'ci' | 'agent'; export declare function detectOperator(fileExists?: (path: string) => boolean): string; export declare const OPERATOR_TO_PLATFORM: Record; export declare function detectCliMode(fileExists?: (path: string) => boolean): CliMode;