/** * Interpolate a given template string by filling the placeholders with the params. * * Placeholder syntax: * {{name}} * * @example * interpolate('
{{text}}
', {text: 'Hello World!'}) * => '
Hello World!
' * * @param {string} template * @param {*} [params={}] * @returns {string} */ export declare function interpolate(template: string, params?: any): string;