/** * Checks if a slot has any meaningful content assigned to it. * "Meaningful" is defined as either an Element node or a Text node * that is not just whitespace. * * Special handling for Vue wrappers: If the only element is a wrapper * element (like ) with no meaningful content inside, treat it as empty. * * @param slot - The HTMLSlotElement to check. * @returns True if the slot has content, false otherwise. */ export declare function hasSlotContent(slot: HTMLSlotElement | null): boolean; //# sourceMappingURL=slot.d.ts.map