import { BaseProperty } from "./base";
/**
 * The JSONProperty is used to define a property that stores
 * data as a JSON string
 */
export declare class JSONProperty extends BaseProperty<Record<string, unknown>> {
    protected dataType: {
        readonly name: "json";
    };
}
//# sourceMappingURL=json.d.ts.map