import { IdentityParams } from './agent-identity-params.js'; export interface AgentIdentityFullProps { /** Ed25519 public key (with or without `ed25519:` prefix). */ publicKey: string; /** Rendered height/width in pixels. @default 300 */ size?: number; /** Pre-derived params to skip redundant derivation. */ params?: IdentityParams; /** Play the staggered entrance sequence. @default true */ animated?: boolean; className?: string; style?: React.CSSProperties; } /** * Full-size agent identity visualisation (200–400 px). * * Choreographed reveal: * 1. Ambient radiance fades in * 2. Deformed rings enter one-by-one, each rotating * 3. Core diamond materialises with elastic bounce * 4. Orbital particles begin tracing * 5. Halo breathes continuously * * Every visual parameter is derived from the agent's Ed25519 public key * so no two agents look alike. */ export declare function AgentIdentityFull({ publicKey, size, params: external, animated, className, style, }: AgentIdentityFullProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=agent-identity-full.d.ts.map