import { ForwardRefExoticComponent, RefAttributes, HTMLAttributes, ReactNode } from 'react'; import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; interface HelperTextVariantProps { size?: 'xs' | 'sm' | null; } declare const helperTextVariants: (props?: (HelperTextVariantProps & ClassProp) | undefined) => string; interface HelperTextProps extends HTMLAttributes, VariantProps { isError?: boolean; isSuccess?: boolean; icon?: ReactNode; } declare const HelperText: ForwardRefExoticComponent>; export { HelperText };