import { PiniaService } from '../create-pinia-service.js'; import { AnyData } from '../types.js'; import { FeathersService, Params } from '@feathersjs/feathers'; export type Service = FeathersService | PiniaService; export interface useServiceInstanceOptions { service: S; store: any; } export declare function useServiceInstance(data: M, options: useServiceInstanceOptions): M;