import type { Command } from 'prosemirror-state';
import { InsertCommand } from './types';
declare class FormatClear implements InsertCommand {
    insert(): Command;
    canExecute(): boolean;
}
export default FormatClear;
