/** * Consent Agent Header * * Renders the agent identity tile shared between the new consent screen and * the OAuth Gateway consent modal. Shows logo + name + Verified/UNVERIFIED * pill + meta line (`Made by {Vendor} · Asking from your {Surface} · Connected * just now`). * * Fed by `AgentMetadata` from `@kya-os/consent/types/capabilities`. * * @module components/consent-agent-header */ import { LitElement } from "lit"; export declare class ConsentAgentHeader extends LitElement { agentName: string; vendor: string; surfaceLabel: string; verified: boolean; logoUrl: string; connectedAt: string; static styles: import("lit").CSSResult; private renderConnectedFragment; private renderMeta; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "consent-agent-header": ConsentAgentHeader; } } //# sourceMappingURL=consent-agent-header.d.ts.map