import type { Type } from './type'; export declare class TypeLiteral implements Type { private readonly name; static isTypeLiteral(type: Type): type is TypeLiteral; toString(): string[]; isEmpty(): boolean; equals(types: Type[]): boolean; includes(type: Type[]): boolean; size(): number; } //# sourceMappingURL=typeLiteral.d.ts.map