import type { Application } from '../../declarations'; import { TogglesService } from './toggles.class'; import { togglesPath } from './toggles.shared'; export * from './toggles.class'; export * from './toggles.schema'; export declare const toggles: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [togglesPath]: TogglesService; } }