/** * Web Component entry point for the Community Header widget. * * @example * ```ts * import '@legionhandtech/lht-react-widgets/community-header-web-component'; * * // Then use in HTML: * // * ``` */ declare class LegionCommunityHeaderElement extends HTMLElement { iframe: HTMLIFrameElement | null; private authBridge; constructor(); static get observedAttributes(): string[]; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void; private get apiUrl(); private get widgetTitle(); private get showSearch(); private get showStats(); private get showOnline(); private get communityUrl(); private get theme(); private get widgetWidth(); private get widgetHeight(); render(): void; private get bridgeBaseUrl(); } export { LegionCommunityHeaderElement };