/** * debug logs a debug-level message that is generally hidden from end-users. */ export declare function debug(_msg: string): Promise; /** * info logs an informational message that is generally printed to stdout during resource operations. */ export declare function info(msg: string): Promise; /** * warn logs a warning to indicate that something went wrong, but not catastrophically so. */ export declare function warn(msg: string): Promise; /** * error logs a fatal condition. Consider raising an exception after calling error to stop the Pulumi program. */ export declare function error(msg: string): Promise; //# sourceMappingURL=log.d.ts.map