import { ComponentType } from 'react'; export declare const ProgressBar: import('@emotion/styled').StyledComponent<{ theme?: import('@emotion/react').Theme; as?: React.ElementType; } & { duration: number; }, import('react').DetailedHTMLProps, HTMLDivElement>, {}>; export interface WithProgressBarProps { duration: number; shouldShowProgressBar: boolean; } export declare function estimatedUploadTime(fileSizeInBytes: number): number; export declare function withProgressBar

(Component: ComponentType

): React.FC

;