import type { Params } from '@feathersjs/feathers'; import { MemoryService } from '@feathersjs/memory'; import type { Application } from '../../declarations'; import type { Homepage, HomepageData, HomepagePatch, HomepageQuery } from './homepage.schema'; export type { Homepage, HomepageData, HomepagePatch, HomepageQuery }; export interface HomepageServiceOptions { app: Application; } export interface HomepageParams extends Params { } export declare class HomepageService extends MemoryService { } export declare const getOptions: (app: Application) => { app: Application; };