import { PropsWithChildren } from 'react'; export interface BCDropZoneProps { onDrop: (acceptedFiles: File[], rejectedFiles: File[]) => void; onDragEnter: () => void; onDragLeave: () => void; multiple?: boolean; acceptedFileTypes: string[]; maxSize?: number; } export declare const BCDropZone: ({ children, onDrop, onDragEnter, onDragLeave, multiple, acceptedFileTypes, maxSize, }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element; export default BCDropZone;