import * as React from "react"; import { Command } from "../types"; export interface MdeToolbarProps { commands: Command[][]; onCommand: (command: Command) => void; readOnly: boolean; stickyToolbar: boolean; } export interface MdeToolbarState { scrolled: boolean; stickyToolbar: boolean; scrollHeight?: number; } export declare class MdeToolbar extends React.Component { constructor(props: MdeToolbarProps); componentDidMount(): void; handleOnScroll(): void; componentWillUnmount(): void; render(): JSX.Element; }