import type { TypographyProps } from '../Typography';
export type FormHelpfulTextProps = {
    dataTestId?: string;
    helpfulText?: string;
    sx?: TypographyProps['sx'];
};
export declare const FormHelpfulText: ({ dataTestId, helpfulText, sx, }: FormHelpfulTextProps) => import("react/jsx-runtime").JSX.Element | null;
