import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls rule appliers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleAppliers({
 *     hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
 * });
 * ```
 */
export declare function getRuleAppliers(args: GetRuleAppliersArgs, opts?: pulumi.InvokeOptions): Promise<GetRuleAppliersResult>;
/**
 * A collection of arguments for invoking getRuleAppliers.
 */
export interface GetRuleAppliersArgs {
    /**
     * The host group id.
     */
    hostGroupId: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by getRuleAppliers.
 */
export interface GetRuleAppliersResult {
    readonly hostGroupId: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The rules list.
     */
    readonly rules: outputs.tls.GetRuleAppliersRule[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls rule appliers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleAppliers({
 *     hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
 * });
 * ```
 */
export declare function getRuleAppliersOutput(args: GetRuleAppliersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRuleAppliersResult>;
/**
 * A collection of arguments for invoking getRuleAppliers.
 */
export interface GetRuleAppliersOutputArgs {
    /**
     * The host group id.
     */
    hostGroupId: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
