import type { ComponentProps, ReactNode } from 'react'; import { DeepPartial } from '..'; import type { TextInputColors, TextInputSizes } from '../TextInput'; export interface FlowbiteFileInputTheme { base: string; field: { base: string; input: { base: string; sizes: TextInputSizes; colors: TextInputColors; }; }; } export interface FileInputProps extends Omit, 'type' | 'ref' | 'color'> { sizing?: keyof TextInputSizes; helperText?: ReactNode; color?: keyof TextInputColors; theme?: DeepPartial; } export declare const FileInput: import("react").ForwardRefExoticComponent>;