import type { Slot } from 'vue'; import type { SpecificVNode } from './tsutils'; declare type TupleData = [SpecificVNode | null, SpecificVNode[] | null]; export declare function getSlotFirstVNode>(slots: Slot | undefined, identificationKey: Symbol | Symbol[], flattenedData: true): TupleData; export declare function getSlotFirstVNode>(slots: Slot | undefined, identificationKey?: Symbol | Symbol[], flattenedData?: false): SpecificVNode | null; export declare function getSlotVNodeIndex(slots?: Slot, key?: Symbol): number; export {};