import { IType } from './_types'; export default class Type { static get typeResolvers(): ((subject: unknown) => { success: boolean; type?: IType | undefined; })[]; static getType(subject: unknown): IType; }