export interface TextLengthIndicatorProps { /** * The current length of the content of the input */ length: number; /** * The max number of characters allowed in the input */ maxLength: number; } /** * The TextLengthIndicator component shows a `{length}/{maxLength}` label. * Used for TextFields to communicate a maximum allowed input length. * * @param {TextLengthIndicatorProps} props - The props for the TextLengthIndicator component * @returns {ReactElement} TextLengthIndicator component */ export declare const TextLengthIndicator: ({ length, maxLength }: TextLengthIndicatorProps) => import("react/jsx-runtime").JSX.Element;