import { ExprType } from "./ExprType.js"; export declare class TypeDisjunction implements ExprType { private readonly types; constructor(...types: Array); getName(): string; isSameTypeAs(other: ExprType): boolean; getTypes(): Array; isSuperTypeOf(other: ExprType): boolean; isSubTypeOf(other: ExprType): boolean; overlapsWith(other: ExprType): boolean; isAssignableFrom(other: ExprType): boolean; }