/** * Web Component entry point for the Campaign Detail widget. * * Importing this module registers the custom element * so it can be used in any HTML page or framework that supports web components. * * @example * ```ts * import '@legionhandtech/lht-react-widgets/campaign-detail-web-component'; * * // Then use in HTML: * // * ``` */ declare class LegionCampaignDetailElement extends HTMLElement { iframe: HTMLIFrameElement | null; private authBridge; private boundMessageHandler; constructor(); static get observedAttributes(): string[]; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void; private get campaignId(); private get apiKey(); private get theme(); private get baseUrl(); private get widgetHeight(); private get widgetWidth(); private handleIframeMessage; render(): void; } export { LegionCampaignDetailElement };