import type { Messenger } from '../messenger.js'; import type { AbstractServiceOptions, Item, MutationOptions, PrimaryKey, Webhook } from '../types/index.js'; import { ItemsService } from './items.js'; export declare class WebhooksService extends ItemsService { messenger: Messenger; constructor(options: AbstractServiceOptions); createOne(data: Partial, opts?: MutationOptions): Promise; createMany(data: Partial[], opts?: MutationOptions): Promise; updateMany(keys: PrimaryKey[], data: Partial, opts?: MutationOptions): Promise; deleteMany(keys: PrimaryKey[], opts?: MutationOptions): Promise; }