/** * Returns the error message of a standard error, the message property of other * objects, the input if it is a string, and nothing otherwise. */ export declare function errorMessage(err: unknown): string | undefined; /** Formats a string. */ export declare function format(fmt: string, ...args: any[]): string;