import type { Body, Meta, Uppy } from '@uppy/core'; import { type StatusBarOptions } from '@uppy/status-bar'; import { Component } from 'react'; interface StatusBarProps extends StatusBarOptions { uppy: Uppy; } /** * React component that renders a status bar containing upload progress and speed, * processing progress and pause/resume/cancel controls. */ declare class StatusBar extends Component> { private container; private plugin; componentDidMount(): void; componentDidUpdate(prevProps: StatusBar['props']): void; componentWillUnmount(): void; installPlugin(): void; uninstallPlugin(props?: Readonly>): void; render(): import("react").DetailedReactHTMLElement<{ className: string; ref: (container: HTMLElement) => void; }, HTMLElement>; } export default StatusBar; //# sourceMappingURL=StatusBar.d.ts.map