import { IntersectionTypeNode } from "typescript"; import { Type } from "./Type"; export declare class IntersectionType extends Type { types: Array; constructor(node: IntersectionTypeNode); toString(): string; }