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