export default class Validator { static isFalsy(value: any): boolean; static isTruthy(value: any): boolean; static throwIfEmpty(value: any): void; static throwIfAnyFalsy(...values: any[]): void; static throwIfAllFalsy(...values: any[]): void; static areAllFalsy(...values: any[]): boolean; } //# sourceMappingURL=validator.d.ts.map