import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { SeriesPerformance, SeriesPerformanceData, SeriesPerformancePatch, SeriesPerformanceQuery, SeriesPerformanceService } from './performance.class'; export type { SeriesPerformance, SeriesPerformanceData, SeriesPerformancePatch, SeriesPerformanceQuery }; export type SeriesPerformanceClientService = Pick>, (typeof seriesPerformanceMethods)[number]>; export declare const seriesPerformancePath = "series/performance"; export declare const seriesPerformanceMethods: Array; export declare const seriesPerformanceClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [seriesPerformancePath]: SeriesPerformanceClientService; } }