import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Tasks, TasksData, TasksPatch, TasksQuery, TasksService } from './tasks.class'; export type { Tasks, TasksData, TasksPatch, TasksQuery }; export type TasksClientService = Pick>, (typeof tasksMethods)[number]>; export declare const tasksPath = "tasks"; export declare const tasksMethods: Array; export declare const tasksClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [tasksPath]: TasksClientService; } }