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