import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Snapshot, SnapshotData, SnapshotPatch, SnapshotQuery, SnapshotService } from './snapshot.class'; export type { Snapshot, SnapshotData, SnapshotPatch, SnapshotQuery }; export type SnapshotClientService = Pick>, (typeof snapshotMethods)[number]>; export declare const snapshotPath = "snapshot"; export declare const snapshotMethods: Array; export declare const snapshotClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [snapshotPath]: SnapshotClientService; } }