import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls kafka consumers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getKafkaConsumers({
 *     ids: [
 *         "65d67d34-c5b4-4ec8-b3a9-175d33668b45",
 *         "cfb5c08b-0c7a-44fa-8971-8afc12f1b123",
 *         "edf051ed-3c46-49ba-9339-bea628fedc15",
 *     ],
 * });
 * ```
 */
/** @deprecated volcengine.tls.KafkaConsumers has been deprecated in favor of volcengine.tls.getKafkaConsumers */
export declare function kafkaConsumers(args?: KafkaConsumersArgs, opts?: pulumi.InvokeOptions): Promise<KafkaConsumersResult>;
/**
 * A collection of arguments for invoking KafkaConsumers.
 */
export interface KafkaConsumersArgs {
    /**
     * A list of topic IDs.
     */
    ids?: string[];
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by KafkaConsumers.
 */
export interface KafkaConsumersResult {
    /**
     * The collection of query.
     */
    readonly datas: outputs.tls.KafkaConsumersData[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly outputFile?: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls kafka consumers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getKafkaConsumers({
 *     ids: [
 *         "65d67d34-c5b4-4ec8-b3a9-175d33668b45",
 *         "cfb5c08b-0c7a-44fa-8971-8afc12f1b123",
 *         "edf051ed-3c46-49ba-9339-bea628fedc15",
 *     ],
 * });
 * ```
 */
/** @deprecated volcengine.tls.KafkaConsumers has been deprecated in favor of volcengine.tls.getKafkaConsumers */
export declare function kafkaConsumersOutput(args?: KafkaConsumersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<KafkaConsumersResult>;
/**
 * A collection of arguments for invoking KafkaConsumers.
 */
export interface KafkaConsumersOutputArgs {
    /**
     * A list of topic IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
