import { Definer } from '@react-form-builder/core'; import { JSX } from 'react/jsx-runtime'; /** * Mantine static content component for React Form Builder. * @param props component properties. * @returns static content component. */ export declare function MtTypography(props: MtTypographyProps): JSX.Element; export declare const mtTypography: Definer; /** * Props for the MtTypography component. */ export declare interface MtTypographyProps { /** * The content text to display. */ content: string; /** * Whether to render the content as HTML or plain text. */ allowHtml: boolean; } export { }