import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Benchmarks, BenchmarksData, BenchmarksPatch, BenchmarksQuery, BenchmarksService } from './benchmarks.class'; export type { Benchmarks, BenchmarksData, BenchmarksPatch, BenchmarksQuery }; export type BenchmarksClientService = Pick>, (typeof benchmarksMethods)[number]>; export declare const benchmarksPath = "benchmarks"; export declare const benchmarksMethods: Array; export declare const benchmarksClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [benchmarksPath]: BenchmarksClientService; } }