import * as ObjectCheck from "../object"; export declare enum InstanceOfErrorCode { NOT_INSTANCE_OF = "NOT_INSTANCE_OF", } export declare type InstanceOfErrorCodeType = ObjectCheck.ObjectErrorCode | InstanceOfErrorCode; export declare function checkInstanceOf(mixed: any, clazz: { new (...args: any[]): T; name: string; }): undefined | InstanceOfErrorCodeType;