import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { TaxResearch, TaxResearchData, TaxResearchPatch, TaxResearchQuery, TaxResearchService } from './research.class'; export type { TaxResearch, TaxResearchData, TaxResearchPatch, TaxResearchQuery }; export type TaxResearchClientService = Pick>, (typeof taxResearchMethods)[number]>; export declare const taxResearchPath = "tax/research"; export declare const taxResearchMethods: Array; export declare const taxResearchClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [taxResearchPath]: TaxResearchClientService; } }