export declare const ClusterDataTieringStatus: {
    readonly True: "true";
    readonly False: "false";
};
export type ClusterDataTieringStatus = (typeof ClusterDataTieringStatus)[keyof typeof ClusterDataTieringStatus];
export declare const ClusterSupportedIpDiscoveryTypes: {
    readonly Ipv4: "ipv4";
    readonly Ipv6: "ipv6";
};
export type ClusterSupportedIpDiscoveryTypes = (typeof ClusterSupportedIpDiscoveryTypes)[keyof typeof ClusterSupportedIpDiscoveryTypes];
export declare const ClusterSupportedNetworkTypes: {
    readonly Ipv4: "ipv4";
    readonly Ipv6: "ipv6";
    readonly DualStack: "dual_stack";
};
export type ClusterSupportedNetworkTypes = (typeof ClusterSupportedNetworkTypes)[keyof typeof ClusterSupportedNetworkTypes];
export declare const MultiRegionClusterUpdateStrategy: {
    readonly Coordinated: "COORDINATED";
    readonly Uncoordinated: "UNCOORDINATED";
};
/**
 * An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
 */
export type MultiRegionClusterUpdateStrategy = (typeof MultiRegionClusterUpdateStrategy)[keyof typeof MultiRegionClusterUpdateStrategy];
export declare const UserAuthenticationModePropertiesType: {
    readonly Password: "password";
    readonly Iam: "iam";
};
/**
 * Type of authentication strategy for this user.
 */
export type UserAuthenticationModePropertiesType = (typeof UserAuthenticationModePropertiesType)[keyof typeof UserAuthenticationModePropertiesType];
