2025-04-22 17:18:30 +08:00
|
|
|
import type { Slots, VNode } from 'vue';
|
2025-04-15 16:38:39 +08:00
|
|
|
export declare function getFirstSlotVNode(slots: Slots, slotName?: string, props?: unknown): VNode | null;
|
2025-04-22 17:18:30 +08:00
|
|
|
export declare function getFirstSlotVNodeWithTypedProps<T>(slotName: string, slot: ((props: T) => VNode[]) | undefined, props: T): VNode | null;
|