import { type CompanionPluginOptions } from '@uppy/companion-client'; import type { AsyncStore, BaseProviderPlugin, Body, Meta } from '@uppy/core'; import { UIPlugin, type Uppy } from '@uppy/core'; import type { LocaleStrings } from '@uppy/utils'; import locale from './locale.js'; declare module '@uppy/core' { interface PluginTypeRegistry { GooglePhotosPicker: GooglePhotosPicker; } } export type GooglePhotosPickerOptions = CompanionPluginOptions & { clientId: string; locale?: LocaleStrings; }; export default class GooglePhotosPicker extends UIPlugin implements BaseProviderPlugin { static VERSION: string; static requestClientId: string; type: string; icon: () => import("preact").JSX.Element; storage: AsyncStore; defaultLocale: { strings: { pluginNameGooglePhotosPicker: string; }; }; constructor(uppy: Uppy, opts: GooglePhotosPickerOptions); install(): void; uninstall(): void; private handleFilesPicked; render: () => import("preact").JSX.Element; } //# sourceMappingURL=GooglePhotosPicker.d.ts.map