import { TextProps } from '../../text/Text.js';
export type TanstackFormHelperTextProps = Omit<TextProps, 'variant' | 'color' | 'className'>;
/**
 * `TanstackFormHelperText` displays non-blocking helper text for the current
 * TanStack form field.
 *
 * Usage:
 * - Place directly under an input/textarea within a `<form.AppField name="…">`.
 */
declare const TanstackFormHelperText: import('react').ForwardRefExoticComponent<TanstackFormHelperTextProps & import('react').RefAttributes<HTMLSpanElement>>;
export { TanstackFormHelperText };
