export type ValidatorsIsNotEmptyHandler = (value: string | Record | any[]) => boolean; export type ValidatorsIsNotEmptyObjectHandler = (value: Object | undefined | null) => boolean; export type ValidatorsIsNotZeroHandler = (value: number) => boolean; export type ValidatorsIsHandledByBackendHandler = (value: any) => false; export type ValidatorsIsURLHandler = (value: string) => boolean; export type ValidatorsIsRegExpHandler = (value: string) => boolean; export type Validators = { isNotEmpty: ValidatorsIsNotEmptyHandler; isNotEmptyObject: ValidatorsIsNotEmptyObjectHandler; isNotZero: ValidatorsIsNotZeroHandler; isHandledByBackend: ValidatorsIsHandledByBackendHandler; isURL: ValidatorsIsURLHandler; isRegExp: ValidatorsIsRegExpHandler; }; //# sourceMappingURL=types.d.ts.map