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