/**
 * Indents each line of text with a tab character.
 *
 * @param text   Text to indent.
 * @returns The indented text.
 */
export declare const indent: (text: string) => string;
