/**
 * Component container
 */
export declare class Component extends HTMLElement {
    static get observedAttributes(): string[];
    documentBodyStyle: any;
    name: string;
    /**
     * WHM payload
     */
    payload: any;
    constructor();
    attributeChangedCallback(): void;
    connectedCallback(): void;
    get message(): string;
    renderShadow(): void;
}
