import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { TasksComments, TasksCommentsData, TasksCommentsPatch, TasksCommentsQuery, TasksCommentsService } from './comments.class'; export type { TasksComments, TasksCommentsData, TasksCommentsPatch, TasksCommentsQuery }; export type TasksCommentsClientService = Pick>, (typeof tasksCommentsMethods)[number]>; export declare const tasksCommentsPath = "tasks/comments"; export declare const tasksCommentsMethods: Array; export declare const tasksCommentsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [tasksCommentsPath]: TasksCommentsClientService; } }