import type { ClientApplication } from '../../client'; import type { TogglesService } from './toggles.class'; import type { Toggles, TogglesData, TogglesPatch, TogglesQuery } from './toggles.schema'; export type { Toggles, TogglesData, TogglesPatch, TogglesQuery }; export type TogglesClientService = Pick; export declare const togglesPath = "toggles"; export declare const togglesMethods: Array; export declare const togglesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [togglesPath]: TogglesClientService; } }