import { FromSchema } from 'json-schema-to-ts';
export declare const versionSchema: {
    readonly $id: "#/components/schemas/versionSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["current", "latest", "isLatest", "instanceId"];
    readonly properties: {
        readonly current: {
            readonly type: "object";
            readonly additionalProperties: false;
            readonly properties: {
                readonly oss: {
                    readonly type: "string";
                };
                readonly enterprise: {
                    readonly type: "string";
                };
            };
        };
        readonly latest: {
            readonly type: "object";
            readonly additionalProperties: false;
            readonly properties: {
                readonly oss: {
                    readonly type: "string";
                };
                readonly enterprise: {
                    readonly type: "string";
                };
            };
        };
        readonly isLatest: {
            readonly type: "boolean";
        };
        readonly instanceId: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type VersionSchema = FromSchema<typeof versionSchema>;
