import * as Types from '../types/Types.js'; interface WebhookResponse extends Types.Webhook, Types.APIResponse { } interface WebhookListResponse extends Types.APIResponse { webhooks: Array; meta: Types.ListMeta; } interface WebhookListRequest { after?: string; before?: string; created_at?: Types.CreatedAtFilter; is_test?: boolean; limit?: string; successful?: boolean; } export declare class WebhookService { private api; constructor(api: any); list(requestParameters: WebhookListRequest, customHeaders?: Types.JsonMap): Promise; all(requestParameters: WebhookListRequest, customHeaders?: Types.JsonMap): AsyncGenerator; find(identity: string, customHeaders?: Types.JsonMap): Promise; retry(identity: string, customHeaders?: Types.JsonMap): Promise; } export {}; //# sourceMappingURL=webhookService.d.ts.map