import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Mailer, MailerData, MailerPatch, MailerQuery, MailerService } from './mailer.class'; export type { Mailer, MailerData, MailerPatch, MailerQuery }; export type MailerClientService = Pick>, (typeof mailerMethods)[number]>; export declare const mailerPath = "mailer"; export declare const mailerMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const mailerClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [mailerPath]: MailerClientService; } }