import { Type } from "./Type"; import { PseucoError } from "../../PseucoError"; export declare class TypeErrorType extends Type { readonly typeError: PseucoError; constructor(typeError: PseucoError); equals(otherType: Type): boolean; isAssignableTo(otherType: Type): boolean; toString(): string; }