/** * The BOOLEAN and STRING primitives respectively map to the `boolean` and `string` JSON data types. * The DOUBLE and INTEGER primitives must be written as a JSON `number` type. */ export declare const Primitive: { readonly Boolean: "BOOLEAN"; readonly Double: "DOUBLE"; readonly Integer: "INTEGER"; readonly String: "STRING"; }; export type Primitive = (typeof Primitive)[keyof typeof Primitive];