import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 */
export declare function getWebhooksHttpServers(args?: GetWebhooksHttpServersArgs, opts?: pulumi.InvokeOptions): Promise<GetWebhooksHttpServersResult>;
/**
 * A collection of arguments for invoking getWebhooksHttpServers.
 */
export interface GetWebhooksHttpServersArgs {
    /**
     * httpServerId path parameter. Http server ID
     */
    httpServerId?: string;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: string;
}
/**
 * A collection of values returned by getWebhooksHttpServers.
 */
export interface GetWebhooksHttpServersResult {
    /**
     * httpServerId path parameter. Http server ID
     */
    readonly httpServerId?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly item: outputs.networks.GetWebhooksHttpServersItem;
    /**
     * Array of ResponseNetworksGetNetworkWebhooksHttpServers
     */
    readonly items: outputs.networks.GetWebhooksHttpServersItem[];
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId?: string;
}
/**
 * ## Example Usage
 */
export declare function getWebhooksHttpServersOutput(args?: GetWebhooksHttpServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebhooksHttpServersResult>;
/**
 * A collection of arguments for invoking getWebhooksHttpServers.
 */
export interface GetWebhooksHttpServersOutputArgs {
    /**
     * httpServerId path parameter. Http server ID
     */
    httpServerId?: pulumi.Input<string>;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: pulumi.Input<string>;
}
