import { IdentityParams } from './agent-identity-params.js'; export interface AgentIdentityMarkProps { /** Ed25519 public key (with or without `ed25519:` prefix). */ publicKey: string; /** Rendered height/width in pixels. @default 40 */ size?: number; /** Pre-derived params to avoid redundant computation. */ params?: IdentityParams; className?: string; style?: React.CSSProperties; } /** * Compact identity glyph (24–64 px). * * Static concentric deformed rings with a breathing core. * Designed for inline use next to agent names, in lists, and * anywhere a recognisable-at-a-glance avatar is needed. */ export declare function AgentIdentityMark({ publicKey, size, params: external, className, style, }: AgentIdentityMarkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=agent-identity-mark.d.ts.map