import type { HTMLAttributes } from "react"; export interface TextFieldAddonProps extends HTMLAttributes { /** * Boolean if the addon should be presentational only and prevent pointer * events. */ presentational?: boolean; } /** * This component is used to add an an icon before or after the text field with * correct styling. */ export declare const TextFieldAddon: import("react").ForwardRefExoticComponent>;