import { type ResponseData } from '../../api/sendFile'; import type { PreventableEvent } from '../PreventableEvent'; import type { InputProps } from './InputProps'; interface InputFileProps extends InputProps { key?: string; uploadResponse?: ResponseData | null; file?: File | null; onReset?: (e: PreventableEvent) => void; isCustomValid?: boolean; } export declare const renderFileInput: ({ label, inputRef, id, key, type, name, pattern, disabled, onChange, onFocus, onBlur, extensions, uploadResponse, file, }: InputFileProps) => any; export {};