/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
export interface IUploadProps extends InputType, MarginType, WidthType {
    placeholder?: string;
    fileName?: string;
    onFileChange?: (file?: File) => void;
}
declare const Upload: import("react").ForwardRefExoticComponent<IUploadProps & import("react").RefAttributes<HTMLInputElement>>;
export default Upload;
