import { DeveloperPlatformClient } from '../../utilities/developer-platform-client.js'; export interface WebhookTopicsVariables { api_version: string; } export interface WebhookTopicsSchema { webhookTopics: string[]; } export declare const getTopicsQuery = "\n query getWebhookTopics($api_version: String!) {\n webhookTopics(apiVersion: $api_version)\n }\n"; /** * Requests topics for an api-version in order to validate flags or present a list of options * * @param developerPlatformClient - The client to access the platform API * @param apiVersion - ApiVersion of the topics * @returns - Available webhook topics for the api-version */ export declare function requestTopics(developerPlatformClient: DeveloperPlatformClient, apiVersion: string): Promise;