/** * Indent a string by `level * 2` spaces. * Newlines within items will be indented to the same level. * @param text Text to indent * @param level Indent level. The number of spaces will be `level * 2`. * @param firstLineOffset Relative indent level for the first line (can be negative, * as long as `level + firstLineOffset` is 0 or greater) */ export declare function indent(text: string, level: number, firstLineOffset?: number): string; //# sourceMappingURL=indent.d.ts.map