import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { BlogPosts, BlogPostsData, BlogPostsPatch, BlogPostsQuery, BlogPostsService } from './posts.class'; export type { BlogPosts, BlogPostsData, BlogPostsPatch, BlogPostsQuery }; export type BlogPostsClientService = Pick>, (typeof blogPostsMethods)[number]>; export declare const blogPostsPath = "blog/posts"; export declare const blogPostsMethods: Array; export declare const blogPostsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [blogPostsPath]: BlogPostsClientService; } }