import { type DropzoneOptions } from "@uppy/components"; export type SvelteDropzoneReturn = { getRootProps: () => { ondragenter: (event: DragEvent) => void; ondragover: (event: DragEvent) => void; ondragleave: (event: DragEvent) => void; ondrop: (event: DragEvent) => void; onclick: () => void; }; getInputProps: () => { id: string; type: "file"; multiple: boolean; onchange: (event: Event) => void; }; }; export declare function useDropzone(options?: DropzoneOptions): SvelteDropzoneReturn;