import React from "react"; export interface DropzoneOverlayProps { description: string; isDragActive: boolean; title: string; visual?: React.ReactNode; } export default function DropzoneOverlay({ description, isDragActive, title, visual }: DropzoneOverlayProps): React.JSX.Element | null; //# sourceMappingURL=DropzoneOverlay.d.ts.map