import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Lists the available SKUs for scaling the Redis Enterprise cluster.
 *
 * Uses Azure REST API version 2025-05-01-preview.
 */
export declare function listRedisEnterpriseSkusForScaling(args: ListRedisEnterpriseSkusForScalingArgs, opts?: pulumi.InvokeOptions): Promise<ListRedisEnterpriseSkusForScalingResult>;
export interface ListRedisEnterpriseSkusForScalingArgs {
    /**
     * The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
     */
    clusterName: string;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
}
/**
 * The response of a listSkusForScaling operation.
 */
export interface ListRedisEnterpriseSkusForScalingResult {
    /**
     * List of SKUS available to scale up or scale down.
     */
    readonly skus?: outputs.redisenterprise.SkuDetailsResponse[];
}
/**
 * Lists the available SKUs for scaling the Redis Enterprise cluster.
 *
 * Uses Azure REST API version 2025-05-01-preview.
 */
export declare function listRedisEnterpriseSkusForScalingOutput(args: ListRedisEnterpriseSkusForScalingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListRedisEnterpriseSkusForScalingResult>;
export interface ListRedisEnterpriseSkusForScalingOutputArgs {
    /**
     * The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
     */
    clusterName: pulumi.Input<string>;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
}
