import * as zjson from "../../zjson"; import { SetValue } from "../../zjson"; import { DecodeStream } from "../decode-stream"; import { EncodeStream } from "../encode-stream"; import { Set } from "../values/set"; import { Type } from "./types"; export declare class TypeSet implements Type { type: Type; kind: string; constructor(type: Type); static stringify(type: Type): string; create(values: SetValue, stream: DecodeStream): Set; serialize(stream: EncodeStream): zjson.NoId; toString(): string; }