/** * .what = indents each line of text with specified prefix * .why = formats multi-line text to align with tree structure in logs */ export declare const asIndentedLines: (input: { text: string; indent: string; }) => string;