import type { ClientService, Paginated, Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { ModelsSignalsHistory, ModelsSignalsHistoryData, ModelsSignalsHistoryPatch, ModelsSignalsHistoryQuery } from './history.class'; export type { ModelsSignalsHistory, ModelsSignalsHistoryData, ModelsSignalsHistoryPatch, ModelsSignalsHistoryQuery }; export type ModelsSignalsHistoryClientService = ClientService, Params>; export declare const modelsSignalsHistoryPath = "models/signals/history"; export declare const modelsSignalsHistoryMethods: readonly ['find', 'get', 'create']; export declare const modelsSignalsHistoryClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [modelsSignalsHistoryPath]: ModelsSignalsHistoryClientService; } }