import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { UsersSessions, UsersSessionsData, UsersSessionsPatch, UsersSessionsQuery, UsersSessionsService } from './sessions.class'; export type { UsersSessions, UsersSessionsData, UsersSessionsPatch, UsersSessionsQuery }; export type UsersSessionsClientService = Pick>, (typeof usersSessionsMethods)[number]>; export declare const usersSessionsPath = "users/sessions"; export declare const usersSessionsMethods: Array; export declare const usersSessionsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [usersSessionsPath]: UsersSessionsClientService; } }