import { WithExtraAttributes } from '@proximus/lavender-common'; import { Stack } from './Stack.ts'; import { Container } from '@proximus/lavender-container'; export declare class Page extends WithExtraAttributes { template: (stickyContainer: boolean) => string; constructor(); static get observedAttributes(): string[]; get $wideImage(): Container; get $bodyVStackContainer(): Stack; get $bodyContainer(): Container; get $contactContainer(): Container; get $footerContainer(): Container; get $headerContainer(): Container; get $imageContainer(): Container; get backgroundImage(): string; get $imageStickySlot(): Element; get $main(): Container; get backgroundColor(): string; get paddingVertical(): string; get paddingHorizontal(): string; set paddingVertical(value: string); set paddingHorizontal(value: string); get gap(): string; connectedCallback(): void; attributeChangedCallback(name: string, oldValue: string, newValue: string): void; handlePaddingVerticalChange(newValue: string): void; handlePaddingHorizontalChange(newValue: string): void; }