import { APIResource } from "../../../core/resource.mjs"; import { APIPromise } from "../../../core/api-promise.mjs"; import { RequestOptions } from "../../../internal/request-options.mjs"; export declare class BaseIndicatorTypes extends APIResource { static readonly _key: readonly ['cloudforceOne', 'threatEvents', 'indicatorTypes']; /** * This Method is deprecated. Please use /events/dataset/:dataset_id/indicatorTypes * instead. * * @deprecated */ list(params: IndicatorTypeListParams, options?: RequestOptions): APIPromise; } export declare class IndicatorTypes extends BaseIndicatorTypes { } export interface IndicatorTypeListResponse { items: IndicatorTypeListResponse.Items; type: string; } export declare namespace IndicatorTypeListResponse { interface Items { type: string; } } export interface IndicatorTypeListParams { /** * Account ID. */ account_id: string; } export declare namespace IndicatorTypes { export { type IndicatorTypeListResponse as IndicatorTypeListResponse, type IndicatorTypeListParams as IndicatorTypeListParams, }; } //# sourceMappingURL=indicator-types.d.mts.map