import { Type } from "../types/types";
import { Value } from "./types";
export declare abstract class Primitive implements Value {
    value: string | null;
    abstract type: Type;
    abstract toJS(): any;
    constructor(value?: string | null);
    isUnset(): boolean;
    isSet(): boolean;
    toString(): string;
    serialize(): string | null;
}
