/** * Trim the indent of a multiline string. * * This uses the [Tagged Templates](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates) feature of JavaScript. * * Useful in particular when defining multiline messages for datadog monitors. * Usage example: * * ```typescript * const message = trimIndent` * {{#is_warning}} * The auth-server handles ${props.others.name} slower than usual. * {{/is_warning}} * `; * console.log(message); * ``` * returns the following: * ``` * {{#is_warning}} * The auth-server handles ${props.others.name} slower than usual. * {{/is_warning}} * ``` */ export declare function trimIndent(strings: TemplateStringsArray, ...values: any[]): string;