import { type CompanionPluginOptions, Provider } from '@uppy/companion-client'; import type { AsyncStore, Body, Meta, UnknownProviderPlugin, UnknownProviderPluginState, UppyFile } from '@uppy/core'; import { UIPlugin, type Uppy } from '@uppy/core'; import { ProviderViews } from '@uppy/provider-views'; import type { LocaleStrings } from '@uppy/utils'; import { type ComponentChild, h } from 'preact'; import locale from './locale.js'; declare module '@uppy/core' { interface PluginTypeRegistry { Facebook: Facebook; } } export type FacebookOptions = CompanionPluginOptions & { locale?: LocaleStrings; }; export default class Facebook extends UIPlugin implements UnknownProviderPlugin { static VERSION: string; icon: () => h.JSX.Element; provider: Provider; view: ProviderViews; storage: AsyncStore; files: UppyFile[]; rootFolderId: string | null; constructor(uppy: Uppy, opts: FacebookOptions); install(): void; uninstall(): void; render(state: unknown): ComponentChild; } //# sourceMappingURL=Facebook.d.ts.map