import type { Body, Meta, State, Uppy, UppyFile } from '@uppy/core'; import type { I18n } from '@uppy/utils'; interface Props { uppy: Uppy; file: UppyFile; isUploaded: boolean; error: string | false; recoveredState: State['recoveredState']; hideRetryButton: boolean; hidePauseResumeButton: boolean; hideCancelButton: boolean; resumableUploads: boolean; individualCancellation: boolean; i18n: I18n; } export default function FileProgress(props: Props): import("preact").JSX.Element | null; export {}; //# sourceMappingURL=index.d.ts.map