import type { FileServiceConfig } from '../types'; interface FileExporterProps { fileId: string; config?: FileServiceConfig; onExportSuccess?: (blob: Blob, fileName: string) => void; onExportError?: (error: string) => void; className?: string; allowSelectiveExport?: boolean; } export declare function FileExporter({ fileId, config, onExportSuccess, onExportError, className, allowSelectiveExport, }: FileExporterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FileExporter.d.ts.map