import type { FromSchema } from 'json-schema-to-ts';
export declare const readyCheckSchema: {
    readonly $id: "#/components/schemas/readyCheckSchema";
    readonly type: "object";
    readonly description: "Used by service orchestrators to decide whether this Unleash instance should be considered ready to serve requests.";
    readonly additionalProperties: false;
    readonly required: readonly ["health"];
    readonly properties: {
        readonly health: {
            readonly description: "The readiness state this Unleash instance is in. GOOD if the server is up and running. If the server is unhealthy you will get an unsuccessful http response.";
            readonly type: "string";
            readonly enum: readonly ["GOOD"];
            readonly example: "GOOD";
        };
    };
    readonly components: {};
};
export type ReadyCheckSchema = FromSchema<typeof readyCheckSchema>;
//# sourceMappingURL=ready-check-schema.d.ts.map