/** * An interface to describe named slots provided by a component. */ export interface LayoutSlot { /** * The name of the slot. */ name: string; /** * The friendly title of the slot. */ title: string; }