import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Returns the cluster customer user credentials for the dedicated appliance.
 *
 * Uses Azure REST API version 2022-04-15-preview.
 */
export declare function listApplianceClusterCustomerUserCredential(args: ListApplianceClusterCustomerUserCredentialArgs, opts?: pulumi.InvokeOptions): Promise<ListApplianceClusterCustomerUserCredentialResult>;
export interface ListApplianceClusterCustomerUserCredentialArgs {
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
    /**
     * Appliances name.
     */
    resourceName: string;
}
/**
 * The List Cluster Customer User Credential Results appliance.
 */
export interface ListApplianceClusterCustomerUserCredentialResult {
    /**
     * The list of appliance kubeconfigs.
     */
    readonly kubeconfigs: outputs.resourceconnector.ApplianceCredentialKubeconfigResponse[];
    /**
     * Map of Customer User Public and Private SSH Keys
     */
    readonly sshKeys: {
        [key: string]: outputs.resourceconnector.SSHKeyResponse;
    };
}
/**
 * Returns the cluster customer user credentials for the dedicated appliance.
 *
 * Uses Azure REST API version 2022-04-15-preview.
 */
export declare function listApplianceClusterCustomerUserCredentialOutput(args: ListApplianceClusterCustomerUserCredentialOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListApplianceClusterCustomerUserCredentialResult>;
export interface ListApplianceClusterCustomerUserCredentialOutputArgs {
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
    /**
     * Appliances name.
     */
    resourceName: pulumi.Input<string>;
}
