import "./DragDrop.scss"; export interface Props { initialText: any; subText?: any; icon?: any; errorButtonText: any; deleteButtonText: any; fileSizeErrorMsg: any; fileFormatErrorMsg: any; headingType?: any; sugHeadingType?: any; dragDropClass?: any; fileNameHeading?: any; iconClass?: any; fileType: any; maxFileSize: number; } declare const DragDrop: ({ initialText, subText, errorButtonText, deleteButtonText, fileSizeErrorMsg, fileFormatErrorMsg, icon, headingType, sugHeadingType, dragDropClass, fileNameHeading, iconClass, fileType, maxFileSize }: Props) => import("react/jsx-runtime").JSX.Element; export default DragDrop;