import type { Universe } from '@ephox/boss'; /** * Flattens the item list into just the top-most elements in the tree. * * In other words, removes duplicates and children. */ declare const simplify: (universe: Universe, items: E[]) => E[]; export { simplify }; //# sourceMappingURL=Simplify.d.ts.map