import { type DropzoneOptions } from '@uppy/components'; export type VueDropzoneReturn = { 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): VueDropzoneReturn; //# sourceMappingURL=useDropzone.d.ts.map