export type AnyClass = new (...params: any[]) => unknown; export interface AnyInstance { constructor?: AnyClass; } export declare function instanceOf(maybeInstance: unknown, Type: T): maybeInstance is InstanceType; //# sourceMappingURL=instance-of.d.ts.map