import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StrategiesBlob, StrategiesBlobData, StrategiesBlobPatch, StrategiesBlobQuery, StrategiesBlobService } from './blob.class'; export type { StrategiesBlob, StrategiesBlobData, StrategiesBlobPatch, StrategiesBlobQuery }; export type StrategiesBlobClientService = Pick>, (typeof strategiesBlobMethods)[number]>; export declare const strategiesBlobPath = "strategies/blob"; export declare const strategiesBlobMethods: readonly ['get', 'create', 'remove']; export declare const strategiesBlobClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [strategiesBlobPath]: StrategiesBlobClientService; } }