import type { HTMLAttributes, QRL } from "@builder.io/qwik"; type Props = { onDragOver$?: QRL<() => void>; onDrop$?: QRL<() => void>; } & HTMLAttributes; export declare const Dropzone: import("@builder.io/qwik").Component; export {};