import { default as React } from 'react';
interface Props {
    children: React.ReactNode;
    onDrop: (files: Array<File>) => void;
    className?: string;
    isDisabled?: boolean;
    isInvalid?: boolean;
    fullFilePath?: boolean;
}
export declare const DragAndDropArea: import('@chakra-ui/react').ChakraComponent<({ onDrop, children, className, isDisabled, fullFilePath, isInvalid }: Props) => React.JSX.Element, {}>;
export {};
