import type { BoxProps } from '@mui/material';
interface FileDnDZoneProps {
    slidesUploaded: number;
    maxSlideLimit?: number;
    acceptedFileFormats?: string;
    disabled?: boolean;
    WrapperProps?: BoxProps;
    OuterBoxProps?: BoxProps;
    InnerBoxProps?: BoxProps;
    SectionBoxProps?: BoxProps;
}
export default FileDnDZoneProps;
