import { Cre8Element } from '../cre8-element'; /** * @slot - The content of the layout section */ export declare class Cre8LayoutSection extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Behavioral variants * - **sticky** allows the layout section to stick to the screen until the * section reaches the bottom of the layout or the next layout section. */ behavior?: 'sticky'; /** * Top style * 1) Used to create dynamic sticky containers that can be adjusted based on the content */ top?: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-layout-section': Cre8LayoutSection; } } export default Cre8LayoutSection; //# sourceMappingURL=layout-section.d.ts.map