import type { TSESTree } from '@typescript-eslint/types'; import type { Type } from './type'; export declare class SingleType implements Type { private props; constructor(props: TSESTree.Identifier); toString(): string[]; isEmpty(): boolean; equals(types: Type[]): boolean; includes(type: Type[]): boolean; size(): number; } //# sourceMappingURL=singleType.d.ts.map