@empoleon/tiptap
Version:
Rich text editor based on tiptap
17 lines (16 loc) • 768 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/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("@empoleon/core").EmpoleonComponent<{
props: RichTextEditorControlsGroupProps;
ref: HTMLDivElement;
stylesNames: RichTextEditorControlsGroupStylesNames;
compound: true;
}>;