import React from 'react'; import type { SavedPlanFile } from '../../services/file.service.js'; export interface FilePickerProps { title: string; files: SavedPlanFile[]; onSelect: (filepath: string) => void; onCancel: () => void; emptyMessage?: string; } export declare const FilePicker: React.FC;