import type { Transaction } from '@atlaskit/editor-prosemirror/state'; import type { InsertionTransactionMeta } from '../types'; import type { ACTIONS } from './actions'; export declare const isInsertionTransaction: (transactions: readonly Transaction[], action: ACTIONS) => InsertionTransactionMeta | null;