import { TypeLiteralNode } from "typescript"; import { Type } from "./Type"; export declare class TypeLiteral extends Type { properties: Map; constructor(type: TypeLiteralNode); toString(): string; }