import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Support, SupportData, SupportPatch, SupportQuery, SupportService } from './support.class'; export type { Support, SupportData, SupportPatch, SupportQuery }; export type SupportClientService = Pick>, (typeof supportMethods)[number]>; export declare const supportPath = "support"; export declare const supportMethods: Array; export declare const supportClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [supportPath]: SupportClientService; } }