import { LitElement } from 'lit'; /** * AI Assistant Launch Button. * @fires on-click - Emits when the button is clicked. */ export declare class AILaunchButton extends LitElement { static styles: import("lit").CSSResult; /** Whether the button is disabled. */ accessor disabled: boolean; /** Animation container element. * @internal */ private accessor _containerEl; /** Instance of animation. * @internal */ private accessor _animation; /** Whether to stop at next loop completion * @internal */ private accessor _shouldStop; render(): import("lit-html").TemplateResult<1>; firstUpdated(): void; private _initAnimation; private _startHoverAnimation; private _stopHoverAnimation; updated(changedProps: any): void; private _emitClick; } declare global { interface HTMLElementTagNameMap { 'kyn-ai-launch-btn': AILaunchButton; } } //# sourceMappingURL=aiLaunchButton.d.ts.map