import { FromSchema } from 'json-schema-to-ts';
export declare const clientApplicationSchema: {
    readonly $id: "#/components/schemas/clientApplicationSchema";
    readonly type: "object";
    readonly required: readonly ["appName", "interval", "started", "strategies"];
    readonly properties: {
        readonly appName: {
            readonly type: "string";
        };
        readonly instanceId: {
            readonly type: "string";
        };
        readonly sdkVersion: {
            readonly type: "string";
        };
        readonly environment: {
            readonly type: "string";
        };
        readonly interval: {
            readonly type: "number";
        };
        readonly started: {
            readonly oneOf: readonly [{
                readonly type: "string";
                readonly format: "date-time";
            }, {
                readonly type: "number";
            }];
        };
        readonly strategies: {
            readonly type: "array";
            readonly items: {
                readonly type: "string";
            };
        };
    };
    readonly components: {};
};
export declare type ClientApplicationSchema = FromSchema<typeof clientApplicationSchema>;
