import { FromSchema } from 'json-schema-to-ts';
export declare const clientFeaturesQuerySchema: {
    readonly $id: "#/components/schemas/clientFeaturesQuerySchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly properties: {
        readonly tag: {
            readonly type: "array";
            readonly items: {
                readonly type: "array";
                readonly items: {
                    readonly type: "string";
                };
            };
        };
        readonly project: {
            readonly type: "array";
            readonly items: {
                readonly type: "string";
            };
        };
        readonly namePrefix: {
            readonly type: "string";
        };
        readonly environment: {
            readonly type: "string";
        };
        readonly inlineSegmentConstraints: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type ClientFeaturesQuerySchema = FromSchema<typeof clientFeaturesQuerySchema>;
