import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * List network fabric controllers to artifact stores
 *
 * Uses Azure REST API version 2024-04-15.
 */
export declare function listArtifactStoreNetworkFabricControllerPrivateEndPoints(args: ListArtifactStoreNetworkFabricControllerPrivateEndPointsArgs, opts?: pulumi.InvokeOptions): Promise<ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult>;
export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsArgs {
    /**
     * The name of the artifact store.
     */
    artifactStoreName: string;
    /**
     * The name of the publisher.
     */
    publisherName: string;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
}
/**
 * List of manual private endpoints.
 */
export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult {
    /**
     * The URI to get the next set of results.
     */
    readonly nextLink: string;
    /**
     * A list of network fabric controllers.
     */
    readonly value?: outputs.hybridnetwork.ArtifactStoreNetworkFabricControllerEndPointsResponse[];
}
/**
 * List network fabric controllers to artifact stores
 *
 * Uses Azure REST API version 2024-04-15.
 */
export declare function listArtifactStoreNetworkFabricControllerPrivateEndPointsOutput(args: ListArtifactStoreNetworkFabricControllerPrivateEndPointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListArtifactStoreNetworkFabricControllerPrivateEndPointsResult>;
export interface ListArtifactStoreNetworkFabricControllerPrivateEndPointsOutputArgs {
    /**
     * The name of the artifact store.
     */
    artifactStoreName: pulumi.Input<string>;
    /**
     * The name of the publisher.
     */
    publisherName: pulumi.Input<string>;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
}
