import * as vue from "vue"; import { ComponentInternalInstance, VNode } from "vue"; //#region ../../packages/hooks/use-ordered-children/index.d.ts type ChildEssential = { uid: number; getVnode: () => VNode; }; declare const useOrderedChildren: (vm: ComponentInternalInstance, childComponentName: string) => { children: vue.ShallowRef; addChild: (child: T) => void; removeChild: (child: T) => void; ChildrenSorter: vue.DefineComponent<{}, () => VNode | null, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>; }; //#endregion export { useOrderedChildren };