import { ChangeEvent, CSSProperties, InputHTMLAttributes } from 'react';
type ICustomUploadHtmlProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'id' | 'style' | 'name' | 'disabled' | 'value' | 'onChange' | 'type'>;
export interface ICustomUpload extends ICustomUploadHtmlProps {
    id?: string;
    value?: string;
    onChange: (event: ChangeEvent<HTMLInputElement>) => void;
    accept?: string;
    label?: string;
    helpText?: string;
    style?: CSSProperties;
    name: string;
    disabled?: boolean;
}
export {};
