import type { ClientApplication } from '../../client'; import type { HomepageService } from './homepage.class'; import type { Homepage, HomepageData, HomepagePatch, HomepageQuery } from './homepage.class'; export type { Homepage, HomepageData, HomepagePatch, HomepageQuery }; export type HomepageClientService = Pick; export declare const homepagePath = "homepage"; export declare const homepageMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const homepageClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [homepagePath]: HomepageClientService; } }