/** * Throws an Error if the guard is true. */ export declare function throwIf(guard: boolean, message: string): guard is true; /** * Throws an Error if the object is undefined. */ export declare function throwIfUndefined(object: T | undefined, message: string): object is T; //# sourceMappingURL=ErrorUtils.d.ts.map