/// /** Creates the visual upload interface, including the area to drag and drop files, * an optional upload button, and descriptive instructions. */ export interface MultipleFileUploadMainProps extends React.HTMLProps { /** Class to add to outer div */ className?: string; /** Content rendered inside the title icon div */ titleIcon?: React.ReactNode; /** Content rendered inside the title text div */ titleText?: React.ReactNode; /** Content rendered inside the title text separator div */ titleTextSeparator?: React.ReactNode; /** Content rendered inside the info div */ infoText?: React.ReactNode; /** Flag to prevent the upload button from being rendered */ isUploadButtonHidden?: boolean; /** Visible text label for the upload button */ browseButtonText?: string; } export declare const MultipleFileUploadMain: React.FunctionComponent; //# sourceMappingURL=MultipleFileUploadMain.d.ts.map