import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Tokens, TokensData, TokensPatch, TokensQuery, TokensService } from './tokens.class'; export type { Tokens, TokensData, TokensPatch, TokensQuery }; export type TokensClientService = Pick>, (typeof tokensMethods)[number]>; export declare const tokensPath = "tokens"; export declare const tokensMethods: Array; export declare const tokensClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [tokensPath]: TokensClientService; } }