import { CSSProperties, HTMLAttributes, PropsWithChildren } from 'react'; export type FileDropContainerProps = PropsWithChildren, 'onLoad'> & { onLoad: (files: Record, clearCache: () => void) => void; prompt?: string; innerStyle?: CSSProperties; }>; export declare const FileDropContainer: ({ onLoad, prompt, children, style, innerStyle, ...rest }: FileDropContainerProps) => import("react/jsx-runtime").JSX.Element;