import { KompoElement, slotCallback } from "../types"; /** * Mimics the slot functionality of * Web Components * * Slots are named, their name & location is * predefined in the component. * * @param Element * @param name * @param cb */ export default function slot(Element: KompoElement, name: string, cb?: slotCallback): void; /** * Checks whether a slot with the given name exists * * @param Element * @param name * @returns {boolean} */ export declare function hasSlot(Element: KompoElement, name: string): boolean; //# sourceMappingURL=slot.d.ts.map