/** Conform the indent of a string */ declare function conformIndent(string: string): string; /** Add a new line to a string */ declare function newLine(string: string): string; /** Add a Linebreak with a empty Line to a string */ declare function lineBreak(string: string): string; export { conformIndent, lineBreak, newLine };