import type { AgentRuntime } from "../../app/agent-runtime.js"; import type { Hab } from "../../app/habbing.js"; export interface DidWebsArtifacts { readonly aid: string; readonly didJson: Uint8Array; readonly keriCesr: Uint8Array; } export interface GenerateDidWebsArtifactsOptions { readonly did: string; readonly alias?: string; readonly metadata?: boolean; } /** Generate both hosted artifacts for one local AID. */ export declare function generateDidWebsArtifacts(runtime: AgentRuntime, options: GenerateDidWebsArtifactsOptions): DidWebsArtifacts; /** Generate the replay CESR stream for one local AID. */ export declare function generateDidWebsCesr(runtime: AgentRuntime, aid: string, options?: { readonly hab?: Hab; }): Uint8Array; //# sourceMappingURL=artifacts.d.ts.map