import { Definer } from '@react-form-builder/core'; import { DropzoneProps } from '@mantine/dropzone'; import { InputWrapperProps } from '@mantine/core'; import { JSX } from 'react/jsx-runtime'; /** * Mantine dropzone component for React Form Builder. * @param props component properties. * @returns dropzone component. */ export declare function MtDropzone(props: MtDropzoneProps): JSX.Element; export declare const mtDropzone: Definer; /** * Props for the MtDropzone component. */ export declare interface MtDropzoneProps extends Omit, Omit { /** * Optional custom dropzone content. */ children?: React.ReactNode; /** * List of picked files. */ value?: File[]; /** * Called when files are picked or removed. */ onChange?: (files: File[]) => void; } export { }