import type { ErrorContext } from './types'; /** * Replace `{{key}}` placeholders in a template with values from `context`. * Missing keys render as an empty string. */ export declare function interpolate(template: string, context?: ErrorContext): string;