/** * Used with normal input strings to provide values to interpolate using a * set of params. * * ```js * const template = 'Example text: ${text}'; * const result = interpolate({ * text: 'Foo bar' * }, template); * // Example text: Foo bar * ``` * * @param params Params to be used in the interpolate. * @param value Normal string value to interpolate. * @returns String literal interpolated string. */ export declare function interpolate(params: Record, value: string): any;