import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; type StrategiesBlob = any; type StrategiesBlobData = any; type StrategiesBlobPatch = any; type StrategiesBlobQuery = any; export type { StrategiesBlob, StrategiesBlobData, StrategiesBlobPatch, StrategiesBlobQuery }; export interface StrategiesBlobServiceOptions { app: Application; } export interface StrategiesBlobParams extends Params { } export declare class StrategiesBlobService implements ServiceInterface { options: StrategiesBlobServiceOptions; constructor(options: StrategiesBlobServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StrategiesBlobData, params?: ServiceParams): Promise; create(data: StrategiesBlobData[], params?: ServiceParams): Promise; update(id: NullableId, data: StrategiesBlobData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StrategiesBlobPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };