export interface Version {
    major: number;
    minor: number;
}
/**
 * Tests for compatibility with various features,
 * given a cluster version from clusterCompatibility.
 */
export declare class FeatureVersions {
    /**
     * Tests for ALTER INDEX replica_count compatibility
     */
    static alterIndexReplicaCount(version: Version | null | undefined): boolean;
}
