import { JSONValue } from '@/engine'; interface RenderContext { [key: string]: string | number | boolean | null; } export declare function renderTemplateWithContext(template: string, context: RenderContext): JSONValue; /** * Recursively processes a JSON value and renders any template strings found within it * @param json - The JSON value to process (can be any JSONValue type) * @param context - The context object containing variables for template rendering * @returns A new JSON value with all template strings rendered */ export declare function renderJsonWithContext(json: JSONValue, context: RenderContext): JSONValue; export { applyTailwind } from './tailwind';