import { LitElement } from 'lit'; import type { DisclosureAction, DisclosureVariant } from '../../types/index.js'; /** * @tag loquix-disclosure-badge * @summary Small badge indicating AI involvement, e.g. "Generated by Claude". * * @csspart badge - The badge element. * * @cssprop [--loquix-disclosure-bg] - Background colour. * @cssprop [--loquix-disclosure-text-color] - Text colour. * @cssprop [--loquix-disclosure-border-radius] - Border radius (default pill). * @cssprop [--loquix-disclosure-font-size] - Font size. * @cssprop [--loquix-disclosure-padding] - Padding inside the badge. */ export declare class LoquixDisclosureBadge extends LitElement { static styles: import("lit").CSSResult[]; private _localize; /** Name of the AI agent displayed after the action verb. */ agentName: string; /** The action that the AI performed. */ action: DisclosureAction; /** Visual variant of the badge. */ variant: DisclosureVariant; protected render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=loquix-disclosure-badge.d.ts.map