import { FromSchema } from 'json-schema-to-ts';
export declare const 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 ApplicationSchema = FromSchema<typeof applicationSchema>;
