/** * Check if slot has no content * @param slot Slot element to check * @returns true if slot is empty */ declare const isSlotEmpty: (slot: HTMLSlotElement) => boolean; export { isSlotEmpty };