/**
 * Object with simple types.
 * The properties on this object can be used instead of hard coded strings when creating types.
 */
export declare enum PrimitiveType {
    string = "string",
    number = "number",
    boolean = "boolean",
    null = "null",
    undefined = "undefined",
    symbol = "symbol"
}
