import { InjectionKey, ComponentInternalInstance, VNode, VNodeNormalizedChildren } from 'vue'; export interface ReturnRelationProvide { children: ComponentInternalInstance[]; initProvide: (value: T) => void; } export declare const filterChildren: (_children: VNodeNormalizedChildren) => VNode[]; export declare const sortChildren: (children: ComponentInternalInstance[], instance: ComponentInternalInstance) => void; export declare const setRelation: (key: InjectionKey | string) => ReturnRelationProvide;