import { ReactNode, RefObject } from "react";
type Props = {
    onFilesDropped: (files: File[]) => void;
    scopeRef?: RefObject<HTMLElement>;
    message?: ReactNode;
};
export declare const VuiFileDropTarget: ({ onFilesDropped, scopeRef, message }: Props) => import("react/jsx-runtime").JSX.Element | null;
export {};
