mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
/// <reference types="react" />
|
|
import { ThemeConfig } from "@notesnook/theme/dist/theme/types";
|
|
import { Editor } from "@tiptap/core";
|
|
import { ToolbarLocation } from "./stores/toolbar-store";
|
|
declare type ToolbarProps = ThemeConfig & {
|
|
editor: Editor | null;
|
|
location: ToolbarLocation;
|
|
isMobile?: boolean;
|
|
};
|
|
export declare function Toolbar(props: ToolbarProps): JSX.Element | null;
|
|
export {};
|