import { APIResource } from "../../../core/resource.js"; import { APIPromise } from "../../../core/api-promise.js"; import { RequestOptions } from "../../../internal/request-options.js"; export declare class BaseTargetIndustries extends APIResource { static readonly _key: readonly ['cloudforceOne', 'threatEvents', 'targetIndustries']; /** * Lists target industries across multiple datasets * * @example * ```ts * const targetIndustries = * await client.cloudforceOne.threatEvents.targetIndustries.list( * { account_id: 'account_id' }, * ); * ``` */ list(params: TargetIndustryListParams, options?: RequestOptions): APIPromise; } export declare class TargetIndustries extends BaseTargetIndustries { } export interface TargetIndustryListResponse { items: TargetIndustryListResponse.Items; type: string; } export declare namespace TargetIndustryListResponse { interface Items { type: string; } } export interface TargetIndustryListParams { /** * Path param: Account ID. */ account_id: string; /** * Query param: Array of dataset IDs to query target industries from. If not * provided, uses the default dataset. */ datasetIds?: Array; } export declare namespace TargetIndustries { export { type TargetIndustryListResponse as TargetIndustryListResponse, type TargetIndustryListParams as TargetIndustryListParams, }; } //# sourceMappingURL=target-industries.d.ts.map