import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls rule bound host groups
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleBoundHostGroups({
 *     ruleId: "83ac687a-0e2b-4788-b626-3dce18498740",
 * });
 * ```
 */
export declare function getRuleBoundHostGroups(args: GetRuleBoundHostGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetRuleBoundHostGroupsResult>;
/**
 * A collection of arguments for invoking getRuleBoundHostGroups.
 */
export interface GetRuleBoundHostGroupsArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The ID of the rule.
     */
    ruleId: string;
}
/**
 * A collection of values returned by getRuleBoundHostGroups.
 */
export interface GetRuleBoundHostGroupsResult {
    /**
     * The collection of Host Group query.
     */
    readonly hostGroups: outputs.tls.GetRuleBoundHostGroupsHostGroup[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    readonly ruleId: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls rule bound host groups
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleBoundHostGroups({
 *     ruleId: "83ac687a-0e2b-4788-b626-3dce18498740",
 * });
 * ```
 */
export declare function getRuleBoundHostGroupsOutput(args: GetRuleBoundHostGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRuleBoundHostGroupsResult>;
/**
 * A collection of arguments for invoking getRuleBoundHostGroups.
 */
export interface GetRuleBoundHostGroupsOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The ID of the rule.
     */
    ruleId: pulumi.Input<string>;
}
