import { FromSchema } from 'json-schema-to-ts';
export declare const featureStrategySegmentSchema: {
    readonly $id: "#/components/schemas/featureStrategySegmentSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["segmentId", "featureStrategyId"];
    readonly properties: {
        readonly segmentId: {
            readonly type: "integer";
        };
        readonly featureStrategyId: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type FeatureStrategySegmentSchema = FromSchema<typeof featureStrategySegmentSchema>;
