import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; export declare class IndicatorTypes extends APIResource { /** * This Method is deprecated. Please use /events/dataset/:dataset_id/indicatorTypes * instead. * * @deprecated */ list(params: IndicatorTypeListParams, options?: Core.RequestOptions): Core.APIPromise; } 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.ts.map