import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; type StrategiesAiStream = any; type StrategiesAiStreamData = any; type StrategiesAiStreamPatch = any; type StrategiesAiStreamQuery = any; export type { StrategiesAiStream, StrategiesAiStreamData, StrategiesAiStreamPatch, StrategiesAiStreamQuery }; export interface StrategiesAiStreamServiceOptions { app: Application; } export interface StrategiesAiStreamParams extends Params { } export declare class StrategiesAiStreamService implements ServiceInterface { options: StrategiesAiStreamServiceOptions; constructor(options: StrategiesAiStreamServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StrategiesAiStreamData, params?: ServiceParams): Promise; create(data: StrategiesAiStreamData[], params?: ServiceParams): Promise; update(id: NullableId, data: StrategiesAiStreamData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StrategiesAiStreamPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };