mantine-entity
Version:
A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management
9 lines (8 loc) • 381 B
TypeScript
import { TextInputProps } from '@mantine/core';
import '@mantine/tiptap/styles.css';
interface RichTextEditorProps extends Omit<TextInputProps, 'onChange'> {
editable?: boolean;
onChange: (content: string) => void;
}
export declare const RichTextInput: import("react").NamedExoticComponent<RichTextEditorProps & import("react").RefAttributes<HTMLInputElement>>;
export {};