import { type FromSchema } from 'json-schema-to-ts'; import { Resource } from '../../client/resource.js'; import { type RequestOptions } from '../../client/types.js'; import * as schemas from '../../schemas/metrics/categories.js'; type GetMetricsCategoriesResponse = FromSchema; export declare class MetricsCategories extends Resource { path: string; entity: string; /** * Query the metrics of broadcasts and their recipients, grouped by category. * * @param options - override client request options. * @returns **/ get(options?: RequestOptions): Promise; } export {};