import type { ComponentProps } from "react"; import type { DynamicStringEnumKeysOf, ThemingProps } from "../../types"; import type { TextInputColors, TextInputSizes } from "../TextInput"; export interface FileInputTheme { base: string; colors: TextInputColors; sizes: TextInputSizes; } export interface FileInputProps extends Omit, "type" | "ref" | "color">, ThemingProps { color?: DynamicStringEnumKeysOf; sizing?: DynamicStringEnumKeysOf; } export declare const FileInput: import("react").ForwardRefExoticComponent>;