import { FromSchema } from 'json-schema-to-ts';
export declare const applicationsSchema: {
    readonly $id: "#/components/schemas/applicationsSchema";
    readonly type: "object";
    readonly properties: {
        readonly applications: {
            readonly type: "array";
            readonly items: {
                readonly $ref: "#/components/schemas/applicationSchema";
            };
        };
    };
    readonly components: {
        readonly schemas: {
            readonly applicationSchema: {
                readonly $id: "#/components/schemas/applicationSchema";
                readonly type: "object";
                readonly additionalProperties: false;
                readonly required: readonly ["appName"];
                readonly properties: {
                    readonly appName: {
                        readonly type: "string";
                    };
                    readonly sdkVersion: {
                        readonly type: "string";
                    };
                    readonly strategies: {
                        readonly type: "array";
                        readonly items: {
                            readonly type: "string";
                        };
                    };
                    readonly description: {
                        readonly type: "string";
                    };
                    readonly url: {
                        readonly type: "string";
                    };
                    readonly color: {
                        readonly type: "string";
                    };
                    readonly icon: {
                        readonly type: "string";
                    };
                    readonly announced: {
                        readonly type: "boolean";
                    };
                };
                readonly components: {};
            };
        };
    };
};
export declare type ApplicationsSchema = FromSchema<typeof applicationsSchema>;
