import type React from 'react'; export interface AutonomyOption { mode: 'off' | 'suggest' | 'auto' | 'eternal' | 'eternal-parallel'; label: string; description: string; color: string; } export interface AutonomyPickerProps { options: AutonomyOption[]; selected: number; hint?: string | undefined; } export declare const AUTONOMY_OPTIONS: AutonomyOption[]; export declare function AutonomyPicker({ options, selected, hint, }: AutonomyPickerProps): React.ReactElement; //# sourceMappingURL=autonomy-picker.d.ts.map