import { ArrayLikeErrorCode, MinLengthErrorCode, MaxLengthErrorCode, NonEmptyErrorCode, ContainsErrorCode, NoDuplicateErrorCode } from "../../../sync/check/array-like"; export { ArrayLikeErrorCode, MinLengthErrorCode, MaxLengthErrorCode, NonEmptyErrorCode, ContainsErrorCode, NoDuplicateErrorCode } from "../../../sync/check/array-like"; import { ArrayErrorCode } from "../../../sync/check/array"; export { ArrayErrorCode } from "../../../sync/check/array"; import { BooleanErrorCode } from "../../../sync/check/boolean"; export { BooleanErrorCode } from "../../../sync/check/boolean"; import { PotentiallyUnsafeDateErrorCode, BeforeErrorCode, AfterErrorCode, BeforeOrAtErrorCode, AfterOrAtErrorCode } from "../../../sync/check/date"; export { PotentiallyUnsafeDateErrorCode, BeforeErrorCode, AfterErrorCode, BeforeOrAtErrorCode, AfterOrAtErrorCode } from "../../../sync/check/date"; import { HasKeysErrorCode, NotHasKeysErrorCode } from "../../../sync/check/dictionary"; export { HasKeysErrorCode, NotHasKeysErrorCode } from "../../../sync/check/dictionary"; import { FunctionErrorCode } from "../../../sync/check/function"; export { FunctionErrorCode } from "../../../sync/check/function"; import { NullOrUndefinedErrorCode } from "../../../sync/check/null-or-undefined"; export { NullOrUndefinedErrorCode } from "../../../sync/check/null-or-undefined"; import { NullErrorCode } from "../../../sync/check/null"; export { NullErrorCode } from "../../../sync/check/null"; import { PotentiallyUnsafeNumberErrorCode, FiniteNumberErrorCode, IntegerErrorCode, GreaterThanErrorCode, GreaterThanOrEqualErrorCode, LessThanErrorCode, LessThanOrEqualErrorCode, PositiveErrorCode, NegativeErrorCode, NonNegativeErrorCode, NaturalNumberErrorCode, OddErrorCode, EvenErrorCode } from "../../../sync/check/number"; export { PotentiallyUnsafeNumberErrorCode, FiniteNumberErrorCode, IntegerErrorCode, GreaterThanErrorCode, GreaterThanOrEqualErrorCode, LessThanErrorCode, LessThanOrEqualErrorCode, PositiveErrorCode, NegativeErrorCode, NonNegativeErrorCode, NaturalNumberErrorCode, OddErrorCode, EvenErrorCode } from "../../../sync/check/number"; import { ObjectErrorCode } from "../../../sync/check/object"; export { ObjectErrorCode } from "../../../sync/check/object"; import { StringErrorCode, NotAllWhitespaceErrorCode, MatchErrorCode, EmailErrorCode, Base64ErrorCode, JsonErrorCode } from "../../../sync/check/string"; export { StringErrorCode, NotAllWhitespaceErrorCode, MatchErrorCode, EmailErrorCode, Base64ErrorCode, JsonErrorCode } from "../../../sync/check/string"; import { UndefinedErrorCode } from "../../../sync/check/undefined"; export { UndefinedErrorCode } from "../../../sync/check/undefined"; import { OneOfErrorCode, NotOneOfErrorCode } from "../../../sync/check/generic/mixed"; export { OneOfErrorCode, NotOneOfErrorCode } from "../../../sync/check/generic/mixed"; import { InstanceOfErrorCode } from "../../../sync/check/generic/object"; export { InstanceOfErrorCode } from "../../../sync/check/generic/object"; import { IsArrayOfErrorCode } from "../../../sync/check/generic/array"; export { IsArrayOfErrorCode } from "../../../sync/check/generic/array"; import { IsDictionaryOfErrorCode } from "../../../sync/check/generic/dictionary"; export { IsDictionaryOfErrorCode } from "../../../sync/check/generic/dictionary"; export declare type AnyErrorCode = (ArrayLikeErrorCode | MinLengthErrorCode | MaxLengthErrorCode | NonEmptyErrorCode | ContainsErrorCode | NoDuplicateErrorCode | ArrayErrorCode | BooleanErrorCode | PotentiallyUnsafeDateErrorCode | BeforeErrorCode | AfterErrorCode | BeforeOrAtErrorCode | AfterOrAtErrorCode | HasKeysErrorCode | NotHasKeysErrorCode | FunctionErrorCode | NullOrUndefinedErrorCode | NullErrorCode | PotentiallyUnsafeNumberErrorCode | FiniteNumberErrorCode | IntegerErrorCode | GreaterThanErrorCode | GreaterThanOrEqualErrorCode | LessThanErrorCode | LessThanOrEqualErrorCode | PositiveErrorCode | NegativeErrorCode | NonNegativeErrorCode | NaturalNumberErrorCode | OddErrorCode | EvenErrorCode | ObjectErrorCode | StringErrorCode | NotAllWhitespaceErrorCode | MatchErrorCode | EmailErrorCode | Base64ErrorCode | JsonErrorCode | UndefinedErrorCode | OneOfErrorCode | NotOneOfErrorCode | InstanceOfErrorCode | IsArrayOfErrorCode | IsDictionaryOfErrorCode);