import React from "react";
import { BoxProps } from "@mui/material";
export interface FileBoxProps extends BoxProps {
    maxHeight?: number;
    vertical?: boolean;
    props?: BoxProps;
}
declare const FileBoxContainer: React.FC<FileBoxProps>;
export default FileBoxContainer;
