import * as pulumi from "@pulumi/pulumi";
import { output as outputs } from "../types";
/**
 * Use this data source to get the list of feature configurations of ELB of a tenant.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as huaweicloud from "@pulumi/huaweicloud";
 *
 * const test = pulumi.output(huaweicloud.DedicatedElb.getFeatureConfigurations());
 * ```
 */
export declare function getFeatureConfigurations(args?: GetFeatureConfigurationsArgs, opts?: pulumi.InvokeOptions): Promise<GetFeatureConfigurationsResult>;
/**
 * A collection of arguments for invoking getFeatureConfigurations.
 */
export interface GetFeatureConfigurationsArgs {
    /**
     * Specifies the feature name.
     */
    feature?: string;
    /**
     * Specifies the region in which to query the resource.
     * If omitted, the provider-level region will be used.
     */
    region?: string;
}
/**
 * A collection of values returned by getFeatureConfigurations.
 */
export interface GetFeatureConfigurationsResult {
    /**
     * Indicates the feature configuration list.
     */
    readonly configs: outputs.DedicatedElb.GetFeatureConfigurationsConfig[];
    /**
     * Indicates the feature name.
     */
    readonly feature?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly region: string;
}
export declare function getFeatureConfigurationsOutput(args?: GetFeatureConfigurationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFeatureConfigurationsResult>;
/**
 * A collection of arguments for invoking getFeatureConfigurations.
 */
export interface GetFeatureConfigurationsOutputArgs {
    /**
     * Specifies the feature name.
     */
    feature?: pulumi.Input<string>;
    /**
     * Specifies the region in which to query the resource.
     * If omitted, the provider-level region will be used.
     */
    region?: pulumi.Input<string>;
}
