/** * Removes excess indentation from multi-line strings. Can also be used as * a tag function. * * @param {string} input Text to extract * * @returns {string} * @category Text */ export default function stripIndent(input: string): string;