import React from "react"; import { Bounds } from "quill-next"; import { ToolbarSignal } from "../classes/toolbar-signal.class"; export interface IToolbarRenderProps { toolbarSignal: ToolbarSignal; bounds: Bounds; formats: Record; } export interface IToolbarPluginProps { parentSelector?: string; verticalPadding?: number; render: (props: IToolbarRenderProps) => React.ReactNode; } declare function ToolbarPlugin(props: IToolbarPluginProps): React.ReactElement; declare namespace ToolbarPlugin { var displayName: string; } export { ToolbarPlugin };