import VList from './VList'; import type { Region } from 'roosterjs-editor-types'; /** * Create a VList object from the given region. * @param region The region to get VList from * @param includeSiblingLists True to also try get lists before and after the selection and merge them together, * false to only include the list for the selected blocks * @param startNode (Optional) When specified, try get VList which will contain this node. * If not specified, get VList from selection of this region */ export default function createVListFromRegion(region: Region, includeSiblingLists?: boolean, startNode?: Node): VList | null;