@mantine/tiptap
Version:
Rich text editor based on tiptap
17 lines (16 loc) • 702 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core';
export type RichTextEditorContentStylesNames = 'root';
export interface RichTextEditorContentProps extends BoxProps, CompoundStylesApiProps<RichTextEditorContentFactory>, ElementProps<'div'> {
}
export type RichTextEditorContentFactory = Factory<{
props: RichTextEditorContentProps;
ref: HTMLDivElement;
stylesNames: RichTextEditorContentStylesNames;
compound: true;
}>;
export declare const RichTextEditorContent: import("@mantine/core").MantineComponent<{
props: RichTextEditorContentProps;
ref: HTMLDivElement;
stylesNames: RichTextEditorContentStylesNames;
compound: true;
}>;