import{type CSSResult}from'lit'; /** * Adoptable ('CSSResult') form of the layout-shift reservations in 'reservations.css'. * * 'reservations.css' is a light-DOM stylesheet: '@import'-ing it at document scope reserves * layout only for 'lr-*' usages that live in that same light DOM. It cannot reach an 'lr-*' * element that a consumer's OWN component renders inside its OWN shadow root, because a document * stylesheet never crosses a shadow boundary. Adopt this export directly into that shadow root * instead, so the same rules -- the same custom properties and fallback tokens the owning * component's own stylesheet reads -- apply there too: * * ```ts * static styles = [reservationStyles, css`...`]; * // or, outside a LitElement: * shadowRoot.adoptedStyleSheets = [reservationStyles.styleSheet!]; * ``` */ export declare const reservationStyles:CSSResult;