import type { Printable } from 'tree-dump/lib/types'; import type { Type } from '../../type'; import type { ModuleType } from './ModuleType'; export declare class AliasType implements Printable { readonly system: ModuleType; readonly id: K; readonly type: T; constructor(system: ModuleType, id: K, type: T); getType(): Type; resolve(): AliasType; toString(tab?: string): string; } //# sourceMappingURL=AliasType.d.ts.map