import { HtmlHTMLAttributes } from 'react';
type OmitedInputProps = 'onChange' | 'type';
type BaseInputProps = HtmlHTMLAttributes<HTMLInputElement>;
export interface AttachFileProps extends Omit<BaseInputProps, OmitedInputProps> {
    onChange?: (files: File[] | null) => void;
    animation?: boolean;
}
export {};
