/** * Names of the user-orderable wrapper layout slots. Every slot listed here is orderable through the * `layout` setting; add new edge slots (for example `start`/`end`) here to introduce them. * * The overlays layer (`ht-overlay`) is intentionally not a slot — it renders like the grid: a fixed * internal element, always present and not orderable. */ export declare const LAYOUT_SLOTS: { readonly TOP: "top"; readonly BOTTOM: "bottom"; }; /** * Union of the orderable layout slot names. */ export type LayoutSlotName = typeof LAYOUT_SLOTS[keyof typeof LAYOUT_SLOTS]; /** * The slot a contributor registers into. Alias of {@link LayoutSlotName} used by the `register` and * `layout` APIs — every slot is a user-orderable side. */ export type LayoutSide = LayoutSlotName; /** * Class added to every element registered in a slot (top/bottom). It carries the shared slot-item * border styling. */ export declare const SLOT_ITEM_CLASS = "ht-slot-element";