import { FileUploadConfig, StorageErrorPayload } from '../utils'; export type FileUploadContext = { progress: number | null; loaded: number; error: StorageErrorPayload | null; id?: string; bucketId?: string; file?: File; }; export type FileUploadEventPayload = {}; export type FileUploadEvents = { type: 'ADD'; file: File; id?: string; bucketId?: string; name?: string; } | ({ type: 'UPLOAD'; file?: File; id?: string; name?: string; bucketId?: string; } & FileUploadConfig) | { type: 'UPLOAD_PROGRESS'; progress: number; loaded: number; additions: number; } | { type: 'UPLOAD_DONE'; id: string; bucketId: string; } | { type: 'UPLOAD_ERROR'; error: StorageErrorPayload; } | { type: 'CANCEL'; } | { type: 'DESTROY'; }; export declare const INITIAL_FILE_CONTEXT: FileUploadContext; export type FileUploadMachine = ReturnType; export declare const createFileUploadMachine: () => import('xstate').StateMachine>; //# sourceMappingURL=file-upload.d.ts.map