import type { AbstractServiceOptions, Item, MutationOptions, PrimaryKey } from '../types/index.js'; import { ItemsService } from './items.js'; import { NotificationsService } from './notifications.js'; import { UsersService } from './users.js'; export declare class ActivityService extends ItemsService { notificationsService: NotificationsService; usersService: UsersService; constructor(options: AbstractServiceOptions); createOne(data: Partial, opts?: MutationOptions): Promise; }