import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Telegram, TelegramData, TelegramPatch, TelegramQuery, TelegramService } from './telegram.class'; export type { Telegram, TelegramData, TelegramPatch, TelegramQuery }; export type TelegramClientService = Pick>, (typeof telegramMethods)[number]>; export declare const telegramPath = "telegram"; export declare const telegramMethods: Array; export declare const telegramClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [telegramPath]: TelegramClientService; } }