import type { LayoutSlot } from "./LayoutSlot"; /** * Metadata for the slots provided by a component. */ export interface LayoutSlotInfo { /** * The default slot. This slot will be given to a child if the child does * not have a slot defined. */ defaultSlot?: string; /** * The slots provided by the component. */ slots?: LayoutSlot[]; }