/** * Removes the minimum indent from a string. * The first and last lines are ignored. * * @example * ```typescript * const str = ` * hello * world * ! * `; * const expected = `hello * world * !`; * trimIndent(str) === expected; // => true * ``` */ declare const trimIndent: (str: string) => string; export default trimIndent; //# sourceMappingURL=trimIndent.d.ts.map