import { type ReactNode } from 'react'; export type FormHelperTextContentProps = { success?: boolean; error?: boolean; children?: ReactNode; }; export declare const FormHelperTextContent: ({ success, error, children, }: FormHelperTextContentProps) => JSX.Element | null;