import type { OperationRaw } from '@db-studio/types'; import type { AbstractServiceOptions, Item, MutationOptions, PrimaryKey } from '../types/index.js'; import { ItemsService } from './items.js'; export declare class OperationsService extends ItemsService { constructor(options: AbstractServiceOptions); createOne(data: Partial, opts?: MutationOptions): Promise; createMany(data: Partial[], opts?: MutationOptions): Promise; updateBatch(data: Partial[], opts?: MutationOptions): Promise; updateMany(keys: PrimaryKey[], data: Partial, opts?: MutationOptions): Promise; deleteMany(keys: PrimaryKey[], opts?: MutationOptions): Promise; }