import type { Body, Meta, State, UIPluginOptions, Uppy } from '@uppy/core'; import { UIPlugin } from '@uppy/core'; import { type ComponentChild } from 'preact'; export type InformerOptions = UIPluginOptions; /** * Informer * Shows rad message bubbles * used like this: `uppy.info('hello world', 'info', 5000)` * or for errors: `uppy.info('Error uploading img.jpg', 'error', 5000)` * */ export default class Informer extends UIPlugin { static VERSION: string; constructor(uppy: Uppy, opts?: UIPluginOptions); render: (state: State) => ComponentChild; install(): void; } //# sourceMappingURL=Informer.d.ts.map