import type { Body, DefinePluginOpts, Meta, State, UIPluginOptions, Uppy } from '@uppy/core'; import { UIPlugin } from '@uppy/core'; import { type ComponentChild } from 'preact'; export interface ProgressBarOptions extends UIPluginOptions { hideAfterFinish?: boolean; fixed?: boolean; } declare const defaultOptions: { fixed: boolean; hideAfterFinish: boolean; }; type Opts = DefinePluginOpts; /** * Progress bar * */ export default class ProgressBar extends UIPlugin { static VERSION: string; constructor(uppy: Uppy, opts?: ProgressBarOptions); render(state: State): ComponentChild; install(): void; uninstall(): void; } export {}; //# sourceMappingURL=ProgressBar.d.ts.map