import { Fragment } from '@atlaskit/editor-prosemirror/model'; import type { ResolvedPos } from '@atlaskit/editor-prosemirror/model'; import type { Selection } from '@atlaskit/editor-prosemirror/state'; export declare const selectionCoversAllListItems: ($from: ResolvedPos, $to: ResolvedPos) => boolean; /** * Get the slice of the document corresponding to the selection. * This is similar to the prosemirror `selection.content()` - but * does not include the parents (unless the result is inline) * * @param selection The selection to get the slice for. * @returns The slice of the document corresponding to the selection. */ export declare const getSliceFromSelection: (selection: Selection) => Fragment; export { getFragmentsFromSelection } from './getFragmentsFromSelection'; export { getLocalIdsFromSelection } from './getLocalIdsFromSelection';