/** * Web Component entry point. * * Importing this module registers the custom element * so it can be used in any HTML page or framework that supports web components. * * @example * ```ts * // Register the web component * import '@legionhandtech/lht-react-widgets/web-component'; * * // Then use in HTML: * // * ``` */ declare class LegionOpportunitiesElement extends HTMLElement { iframe: HTMLIFrameElement | null; private detachOverlay; static get observedAttributes(): string[]; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(_name: string, oldValue: string | null, newValue: string | null): void; private get count(); private get layout(); private get tags(); private get theme(); private get widgetHeight(); private get baseUrl(); private get apiKey(); render(): void; } export { LegionOpportunitiesElement };