import type { ClientService, Paginated, Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { AutotuneUsage, AutotuneUsageData, AutotuneUsagePatch, AutotuneUsageQuery } from './usage.class'; export type { AutotuneUsage, AutotuneUsageData, AutotuneUsagePatch, AutotuneUsageQuery }; export type AutotuneUsageClientService = ClientService, Params>; export declare const autotuneUsagePath = "autotune/usage"; export declare const autotuneUsageMethods: readonly ['find', 'get']; export declare const autotuneUsageClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [autotuneUsagePath]: AutotuneUsageClientService; } }