/** * Remove common leading whitespace from a template string. * Will also remove empty lines at the beginning and end. * @category string * @example * ```ts * const str = unindent` * if (a) { * b() * } * ` */ declare function unindent(str: TemplateStringsArray | string): string; export { unindent };