export declare function progress(text: string): void; export declare function task(text: string): void; /** * Shortcut `pass` method with a checkmark */ export declare function pass(text: string): void; /** * Shortcut `skip` method with a dimmer checkmark */ export declare function skip(text: string): void; export declare function message(text: string): void; export declare function alert(text: string): void; /** * Shortcut `fail` method that logs with an "x" and then throws the value to * stop script from continuing. */ export declare function fail(value: string | unknown, { throwError }?: { throwError?: boolean; }): never; /** * Pretty Print a `string` or `RegExp` value */ export declare function stringify(value: string | RegExp): string; /** * Display a section heading in the script */ export declare function title(text: string): void; /** * Display a section heading in the script */ export declare function heading(text: string): void;