import type { ClaimContext } from "./types.js"; /** * Interpolate {variable} placeholders in a template string using claim context. * * Replaces: * {claimId} - from context.claimId * {did} - from context.did * {handle} - from context.handle * {anyKey} - from context.params[anyKey] */ export declare function interpolate(template: string, context: ClaimContext): string; //# sourceMappingURL=interpolate.d.ts.map