import type { NodeType } from '@atlaskit/editor-prosemirror/model';
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
export declare const insertBlock: (state: EditorState, nodeType: NodeType, start: number, end: number, attrs?: {
    [key: string]: any;
} | undefined) => Transaction | null;
