export function isAnything(): boolean; export function enforceAnything(value: any): any; export function checkNumericRange(rule: any, value: any, defaultValue: any): any; export function checkLength(rule: any, value: any): boolean; export namespace instanceRule { export { isInstanceOf as check }; export { enforceInstanceOf as enforce }; } export namespace sameRule { export { strictEquality as check }; export { enforceAnything as enforce }; } export const TYPE_RULES: any; import { isInstanceOf } from 'type-enforcer'; import { enforceInstanceOf } from 'type-enforcer'; import { strictEquality } from 'type-enforcer'; //# sourceMappingURL=typeRules.d.ts.map