import { VNode, Slot } from 'vue'; type NodeAttributes = Record; /** Renders node, apply slot bind and attributes to actual HTML Node, not vue pseudo elements */ export declare const renderSlotNode: (slot: Slot | undefined, slotBind?: any, nodeAttributes?: NodeAttributes) => VNode | null; export declare const renderSlotNodes: (slot: Slot | undefined, slotBind?: any, nodeAttributes?: NodeAttributes) => (VNode | null)[] | null; export {};