import { ComponentPropsWithoutRef, ReactNode } from 'react'; type ELTextFieldCustomProps = { name: string; 'aria-label': string; label?: string; isLabelSrOnly?: boolean; helperText?: string; leadingIcon?: ReactNode; error?: string; onClear?: () => void; 'data-cy'?: string; innerRef?: React.RefObject; }; type ELTextFieldProps = Omit, 'name'> & ELTextFieldCustomProps; export declare const ELTextField: ({ name, label, isLabelSrOnly, helperText, leadingIcon, onClear, error, innerRef, ...rest }: ELTextFieldProps) => import("react/jsx-runtime").JSX.Element; export {};