import type { ClientService, Paginated, Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { AutotuneTrial, AutotuneTrialData, AutotuneTrialPatch, AutotuneTrialQuery } from './trials.class'; export type { AutotuneTrial, AutotuneTrialData, AutotuneTrialPatch, AutotuneTrialQuery }; export type AutotuneTrialsClientService = ClientService, Params>; export declare const autotuneTrialsPath = "autotune/trials"; export declare const autotuneTrialsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const autotuneTrialsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [autotuneTrialsPath]: AutotuneTrialsClientService; } }