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