import { Value, Block, Range, Selection } from 'slate'; import { List } from 'immutable'; import Options from '../options'; /** * Return the list of items at the given range. The returned items are * the highest list item blocks that cover the range. * * Returns an empty list if no list of items can cover the range */ declare const getItemsAtRange: (opts: Options) => (value: Value, range?: Selection | Range) => List; export default getItemsAtRange; //# sourceMappingURL=getItemsAtRange.d.ts.map