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