import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { BlogSitemaps, BlogSitemapsData, BlogSitemapsPatch, BlogSitemapsQuery, BlogSitemapsService } from './sitemaps.class'; export type { BlogSitemaps, BlogSitemapsData, BlogSitemapsPatch, BlogSitemapsQuery }; export type BlogSitemapsClientService = Pick>, (typeof blogSitemapsMethods)[number]>; export declare const blogSitemapsPath = "blog/sitemaps"; export declare const blogSitemapsMethods: Array; export declare const blogSitemapsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [blogSitemapsPath]: BlogSitemapsClientService; } }