import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../declarations'; type Version = any; type VersionData = any; type VersionPatch = any; type VersionQuery = any; export type { Version, VersionData, VersionPatch, VersionQuery }; export interface VersionServiceOptions { app: Application; } export interface VersionParams extends Params { } export declare class VersionService implements ServiceInterface { options: VersionServiceOptions; constructor(options: VersionServiceOptions); find(_params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };