import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * List configurations for the given product family, product line and product for the given subscription.
 *
 * Uses Azure REST API version 2024-02-01.
 *
 * Other available API versions: 2022-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native edgeorder [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listProductsAndConfigurations(args?: ListProductsAndConfigurationsArgs, opts?: pulumi.InvokeOptions): Promise<ListProductsAndConfigurationsResult>;
export interface ListProductsAndConfigurationsArgs {
    /**
     * Holds details about product hierarchy information and filterable property.
     */
    configurationFilter?: inputs.edgeorder.ConfigurationFilter;
    /**
     * Customer subscription properties. Clients can display available products to unregistered customers by explicitly passing subscription details.
     */
    customerSubscriptionDetails?: inputs.edgeorder.CustomerSubscriptionDetails;
    /**
     * $skipToken is supported on list of configurations, which provides the next page in the list of configurations.
     */
    skipToken?: string;
}
/**
 * The list of configurations.
 */
export interface ListProductsAndConfigurationsResult {
    /**
     * The link to the next page of items
     */
    readonly nextLink?: string;
    /**
     * The Configuration items on this page
     */
    readonly value: outputs.edgeorder.ConfigurationResponse[];
}
/**
 * List configurations for the given product family, product line and product for the given subscription.
 *
 * Uses Azure REST API version 2024-02-01.
 *
 * Other available API versions: 2022-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native edgeorder [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listProductsAndConfigurationsOutput(args?: ListProductsAndConfigurationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListProductsAndConfigurationsResult>;
export interface ListProductsAndConfigurationsOutputArgs {
    /**
     * Holds details about product hierarchy information and filterable property.
     */
    configurationFilter?: pulumi.Input<inputs.edgeorder.ConfigurationFilterArgs>;
    /**
     * Customer subscription properties. Clients can display available products to unregistered customers by explicitly passing subscription details.
     */
    customerSubscriptionDetails?: pulumi.Input<inputs.edgeorder.CustomerSubscriptionDetailsArgs>;
    /**
     * $skipToken is supported on list of configurations, which provides the next page in the list of configurations.
     */
    skipToken?: pulumi.Input<string>;
}
