/** * Process string templates in values * * Supports: * - Generators: {{$randomInt(min, max)}}, {{$uuid}}, {{$timestamp}} * - Context variables: {{varName}} * - Type preservation: If the whole string is a template returning a number, returns a number. */ export declare function processTemplate(value: any, context?: Record): any; //# sourceMappingURL=template-utils.d.ts.map