import * as NumberCheck from "../number"; import * as MixedCheck from "./mixed"; export declare type OneOfErrorTypeCode = NumberCheck.PotentiallyUnsafeNumberErrorCode | MixedCheck.OneOfErrorCode; export declare function checkOneOf(mixed: any, arr: T[]): undefined | OneOfErrorTypeCode;