import type React from 'react'; /** A single row in the project picker. Matches the CLI's PickerItem shape. */ export interface ProjectPickerItem { key: string; label: string; subtitle?: string | undefined; meta?: string | undefined; kind: 'project' | 'action'; } export interface ProjectPickerProps { /** Already-filtered items. Navigation indices target this list directly. */ items: ProjectPickerItem[]; /** Index into `items`. Guaranteed to never point at a divider. */ selected: number; /** Current filter text. */ filter: string; /** Optional status/error hint shown below the list. */ hint?: string | undefined; } /** Responsive project command center opened by F1. */ export declare function ProjectPicker({ items, selected, filter, hint, }: ProjectPickerProps): React.ReactElement; //# sourceMappingURL=project-picker.d.ts.map