import type { ComponentProps, FC, ReactNode } from "react"; import type { DynamicStringEnumKeysOf, FlowbiteBoolean, FlowbiteColors, FlowbiteSizes, ThemingProps } from "../../types"; export interface TextInputTheme { base: string; addon: string; field: { base: string; icon: { base: string; svg: string; }; rightIcon: { base: string; svg: string; }; input: { base: string; sizes: TextInputSizes; colors: TextInputColors; withIcon: FlowbiteBoolean; withRightIcon: FlowbiteBoolean; withAddon: FlowbiteBoolean; withShadow: FlowbiteBoolean; }; }; } export interface TextInputColors extends Pick { [key: string]: string; } export interface TextInputSizes extends Pick { [key: string]: string; } export interface TextInputProps extends Omit, "ref" | "color">, ThemingProps { addon?: ReactNode; color?: DynamicStringEnumKeysOf; icon?: FC>; rightIcon?: FC>; shadow?: boolean; sizing?: DynamicStringEnumKeysOf; } export declare const TextInput: import("react").ForwardRefExoticComponent>;