import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; import type { AgentsPrepare, AgentsPrepareData, AgentsPreparePatch, AgentsPrepareQuery } from './prepare.schema'; export type { AgentsPrepare, AgentsPrepareData, AgentsPreparePatch, AgentsPrepareQuery }; export interface AgentsPrepareServiceOptions { app: Application; } export interface AgentsPrepareParams extends Params { } export declare class AgentsPrepareService implements ServiceInterface { options: AgentsPrepareServiceOptions; constructor(options: AgentsPrepareServiceOptions); create(data: AgentsPrepareData, params?: ServiceParams): Promise; create(data: AgentsPrepareData[], params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };