import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Webhooks extends ClientSDK { /** * List webhooks * * @remarks * Lists all webhook configurations with pagination */ list(request: operations.GetApiLeadScraperMicroserviceApiV1WebhooksRequest, options?: RequestOptions): Promise; /** * Create webhook * * @remarks * Creates a new webhook configuration for event notifications */ create(request: operations.PostApiLeadScraperMicroserviceApiV1WebhooksRequestBody, options?: RequestOptions): Promise; /** * Update webhook * * @remarks * Updates an existing webhook configuration */ update(request: operations.PutApiLeadScraperMicroserviceApiV1WebhooksRequestBody, options?: RequestOptions): Promise; /** * Get webhook * * @remarks * Retrieves details of a specific webhook configuration */ get(request: operations.GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest, options?: RequestOptions): Promise; /** * Delete webhook * * @remarks * Deletes a webhook configuration */ delete(request: operations.DeleteApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=webhooks.d.ts.map