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