import * as React from 'react';
import { type ContextPaneProps } from 'nice-ui/lib/4-card/ContextMenu/ContextPane';
export interface FormattingPaneProps extends ContextPaneProps {
    onEsc?: () => void;
    children?: React.ReactNode;
}
export declare const FormattingPane: React.FC<FormattingPaneProps>;
