import type { ClientService, Paginated, Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { AutotuneStudy, AutotuneStudyData, AutotuneStudyPatch, AutotuneStudyQuery } from './studies.class'; export type { AutotuneStudy, AutotuneStudyData, AutotuneStudyPatch, AutotuneStudyQuery }; export type AutotuneStudiesClientService = ClientService, Params>; export declare const autotuneStudiesPath = "autotune/studies"; export declare const autotuneStudiesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const autotuneStudiesClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [autotuneStudiesPath]: AutotuneStudiesClientService; } }