import { FilesLoaderProps } from '../FilesLoader'; import { FilesProcessorFunction, FilesProcessorProcessingResult } from './types'; export type ProcessorProps = { processFile: FilesProcessorFunction; onStatusChange: (result: FilesProcessorProcessingResult) => void; file: File; onDelete: (file: File) => void; formatProgress?: FilesLoaderProps['formatProgress']; }; export declare const Processor: (props: ProcessorProps) => JSX.Element; //# sourceMappingURL=Processor.d.ts.map