import type { Id, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../declarations'; import type { Plans, PlansData, PlansPatch, PlansQuery } from './plans.schema'; export type { Plans, PlansData, PlansPatch, PlansQuery }; export interface PlansServiceOptions { app: Application; } export interface PlansParams extends Params { } export declare class PlansService implements ServiceInterface { options: PlansServiceOptions; constructor(options: PlansServiceOptions); private parseProduct; private fetchPlans; find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };