import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Messages, MessagesData, MessagesPatch, MessagesQuery, MessagesService } from './messages.class'; export type { Messages, MessagesData, MessagesPatch, MessagesQuery }; export type MessagesClientService = Pick>, (typeof messagesMethods)[number]>; export declare const messagesPath = "messages"; export declare const messagesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const messagesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [messagesPath]: MessagesClientService; } }