import type { ComponentInternalInstance, VNode } from 'vue'; type ChildEssential = { uid: number; getVnode: () => VNode; }; export declare const useOrderedChildren: (vm: ComponentInternalInstance, childComponentName: string) => { children: any; addChild: (child: T) => void; removeChild: (child: T) => void; ChildrenSorter: any; }; export {};