import { IManagementClientConfig } from '../config'; import { Identifiers } from '../models'; import { ContentManagementQueryService } from '../services'; export declare class WebhookIdentifierQuery { protected config: IManagementClientConfig; protected queryService: ContentManagementQueryService; protected buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.WebhookIdentifier) => TResult; constructor(config: IManagementClientConfig, queryService: ContentManagementQueryService, buildResult: (config: IManagementClientConfig, queryService: ContentManagementQueryService, identifier: Identifiers.WebhookIdentifier) => TResult); /** * Id identifier * @param id Id of the webhook */ byId(id: string): TResult; }