export declare const validate: (expression: boolean, msg: string, customErrorClass?: new (msg: string) => Error) => void; export declare const validateNotNil: (obj: T | null | undefined, msg: string, customErrorClass?: new (msg: string) => Error) => T; export declare const validateArrayNotEmpty: (obj: T[] | null | undefined, msg: string, customErrorClass?: new (msg: string) => Error) => T[]; export declare const validateFound: (type: string, id: string | number, instance: T | null) => T; //# sourceMappingURL=validators.d.ts.map