import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Referrals, ReferralsData, ReferralsPatch, ReferralsQuery, ReferralsService } from './referrals.class'; export type { Referrals, ReferralsData, ReferralsPatch, ReferralsQuery }; export type ReferralsClientService = Pick>, (typeof referralsMethods)[number]>; export declare const referralsPath = "referrals"; export declare const referralsMethods: Array; export declare const referralsClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [referralsPath]: ReferralsClientService; } }