///
import Box from './Box';
import { IProps } from '../utils';
interface IMProps extends IProps {
type?: string;
}
interface IState {
src: string;
percent: number;
}
export default class File extends Box {
state: {
src: string;
percent: number;
};
beforeUpload: (file: any) => boolean;
handleProcess: (info: any) => void;
getChildrenToRender: () => JSX.Element;
}
export {};