import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { BlogIntegrations, BlogIntegrationsData, BlogIntegrationsPatch, BlogIntegrationsQuery, BlogIntegrationsService } from './integrations.class'; export type { BlogIntegrations, BlogIntegrationsData, BlogIntegrationsPatch, BlogIntegrationsQuery }; export type BlogIntegrationsClientService = Pick>, (typeof blogIntegrationsMethods)[number]>; export declare const blogIntegrationsPath = "blog/integrations"; export declare const blogIntegrationsMethods: Array; export declare const blogIntegrationsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [blogIntegrationsPath]: BlogIntegrationsClientService; } }