import type { Application } from '../../declarations'; import { PlansService } from './plans.class'; import { plansPath } from './plans.shared'; export * from './plans.class'; export * from './plans.schema'; export declare const plans: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [plansPath]: PlansService; } }