import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { TaxSessions, TaxSessionsData, TaxSessionsPatch, TaxSessionsQuery, TaxSessionsService } from './sessions.class'; export type { TaxSessions, TaxSessionsData, TaxSessionsPatch, TaxSessionsQuery }; export type TaxSessionsClientService = Pick>, (typeof taxSessionsMethods)[number]>; export declare const taxSessionsPath = "tax/sessions"; export declare const taxSessionsMethods: Array; export declare const taxSessionsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [taxSessionsPath]: TaxSessionsClientService; } }