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/topics.js'; type GetMetricsTopicsResponse = FromSchema; export declare class MetricsTopics extends Resource { path: string; entity: string; /** * Query the metrics of broadcasts and their recipients, grouped by topic. * * @param options - override client request options. * @returns **/ get(options?: RequestOptions): Promise; } export {};