import { FC } from 'react'; import { TextProps } from '../Text'; import { HelperTextSize } from './types'; export interface HelperTextProps extends Omit { /** * Visual size of the helper text. * Adjusts font size and spacing relative to form element size. */ size?: HelperTextSize; /** * Displays the helper text in an error state. * Changes color to red. */ error?: boolean; } /** Helper Text is a UI component that provides additional guidance or information to assist users in completing a task, typically displayed below an input field or form element to clarify its purpose or offer instructions */ export declare const HelperText: FC;