@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
8 lines (7 loc) • 323 B
TypeScript
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;