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