import React, { HTMLProps, ReactNode } from 'react'; interface TextInputFieldProps extends Omit, 'label' | 'size'> { /** * label */ label?: ReactNode; /** * before */ before?: boolean; /** * after */ after?: boolean; /** * Invalid */ invalid?: boolean; /** * Aria Invalid */ 'aria-invalid'?: boolean; /** * Size */ instanceId?: string; /** * Size */ size?: string; /** * The override API */ overrides?: { TextInputField?: { styles?: (...args: unknown[]) => unknown; component?: React.ElementType; attributes?: (...args: unknown[]) => unknown; }; }; } export declare const TextInputField: React.ForwardRefExoticComponent & React.RefAttributes>; export {};