import { InputWrapperBaseProps } from '../internals/InputWrapper'; export interface InputFileProps extends InputWrapperBaseProps, Omit, "type"> { /** * The title is shown within the input. */ title: string; /** * If defined, it shows a progress bar at the bottom. It must be between 0 and 100. */ progress?: number; } export declare const InputFile: import('react').ForwardRefExoticComponent>;