import { HandleEvents } from './types.js'; import { PiniaService } from '../create-pinia-service.js'; import { AnyData } from '../types.js'; import { FeathersService } from '@feathersjs/feathers'; interface UseServiceStoreEventsOptions { service: PiniaService>; debounceEventsTime?: number; debounceEventsGuarantee?: boolean; handleEvents?: HandleEvents; } export declare function useServiceEvents(options: UseServiceStoreEventsOptions): void; export {};