import type { ViewModel } from '../main/view-model.js'; declare const _default: ((host: ViewModel) => void) & { setup: typeof setup; }; export default _default; export type UploadOptions = { accept: string | string[]; useAcceptForFilePicker: boolean; dragdrop: boolean; clipboard: boolean; }; declare function setup(options?: Partial): (host: ViewModel) => void;