import { Definer } from '@react-form-builder/core'; import { InputWrapperProps } from '@mantine/core'; import { JSX } from 'react/jsx-runtime'; /** * Mantine rich text editor component for React Form Builder. * @param props component properties. * @returns rich text editor component. */ export declare function MtTiptap(props: MtTiptapProps): JSX.Element; export declare const mtTiptap: Definer; /** * Props for the MtTiptap component. */ export declare interface MtTiptapProps extends Omit { /** * Initial content of the editor in HTML format. */ value?: string; /** * Callback fired when content of the editor changes. */ onChange?: (value: string) => void; /** * Input placeholder. */ placeholder?: string; /** * Controls whether typography styles are applied to the content. */ withTypographyStyles?: boolean; /** * Makes the toolbar sticky. */ sticky?: boolean; /** * Sticky toolbar offset. */ stickyOffset?: string | number; /** * Toolbar variant. */ variant?: 'default' | 'subtle'; } export { }