@blocknote/mantine
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
18 lines (17 loc) • 759 B
TypeScript
export declare const Card: import("react").ForwardRefExoticComponent<{
className?: string;
headerText?: string;
selected?: boolean;
onFocus?: (event: React.FocusEvent) => void;
onBlur?: (event: React.FocusEvent) => void;
tabIndex?: number;
children?: import("react").ReactNode;
} & import("react").RefAttributes<HTMLDivElement>>;
export declare const CardSection: import("react").ForwardRefExoticComponent<{
className?: string;
children?: import("react").ReactNode;
} & import("react").RefAttributes<HTMLDivElement>>;
export declare const ExpandSectionsPrompt: import("react").ForwardRefExoticComponent<{
className?: string;
children?: import("react").ReactNode;
} & import("react").RefAttributes<HTMLDivElement>>;