import type { FileServiceConfig, ImportOptions } from '../types'; interface FileImporterProps { config?: FileServiceConfig; onImportSuccess?: (fileId: string, options?: ImportOptions) => void; onImportError?: (error: string) => void; className?: string; accept?: string; showPreview?: boolean; allowSelectiveImport?: boolean; } export declare function FileImporter({ config, onImportSuccess, onImportError, className, accept, showPreview, allowSelectiveImport, }: FileImporterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FileImporter.d.ts.map