import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Plans, PlansData, PlansPatch, PlansQuery, PlansService } from './plans.class'; export type { Plans, PlansData, PlansPatch, PlansQuery }; export type PlansClientService = Pick>, (typeof plansMethods)[number]>; export declare const plansPath = "plans"; export declare const plansMethods: Array; export declare const plansClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [plansPath]: PlansClientService; } }