/** * Interpolates variables into a string using the #{key} syntax. * * @param text The string to interpolate * @param vars A record of key-value pairs to replace * @returns The interpolated string */ export declare function interpolate(text: string, vars: Record): string;