import type { FileMetadata, FileServiceConfig } from '../types'; interface FileListProps { config?: FileServiceConfig; onFileSelect?: (file: FileMetadata) => void; onFileDelete?: (fileId: string) => void; className?: string; showPreview?: boolean; selectedFileId?: string | null; } export declare function FileList({ config, onFileSelect, onFileDelete, className, showPreview, selectedFileId, }: FileListProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FileList.d.ts.map