/** * */ export declare function escapeRegExp(value: string): string; /** * */ export declare function padRight(text: string, totalLength: number): string; /** * */ export declare function error(message: string): void; /** * */ export declare function die(message: string): never; /** * */ export declare function getIndentation(text: string): string | number; /** * */ export declare function getFileIndentation(filePath: string): Promise; /** * */ export declare function interceptErrors(func: () => Promise): () => Promise;