import { Slot } from 'vue';
declare function hasSlotContent(slot: Slot | undefined | null, props?: any): boolean;
declare function isSlotEmpty(slot: Slot | undefined | null, props?: any): boolean;
export default function useEmptySlotCheck(): {
    hasSlotContent: typeof hasSlotContent;
    isSlotEmpty: typeof isSlotEmpty;
};
export {};
