import React from 'react'; import { ICommand } from '.'; import { IMarkdownEditor, ToolBarProps } from '..'; interface FullscreenButtonProps extends Omit, 'onClick'> { command: ICommand; editorProps: IMarkdownEditor & ToolBarProps; onClick?: (evn: React.MouseEvent, isFull: boolean) => void; } export declare const FullscreenButton: React.FC; export declare const fullscreen: ICommand; export {};