import React from 'react';
import { CommonDisplayFileProps } from '../interface';
export interface NormalFileProps extends CommonDisplayFileProps {
    multiple: boolean;
}
declare function NormalFile(props: NormalFileProps): React.JSX.Element;
declare namespace NormalFile {
    var displayName: string;
}
export default NormalFile;
