import { type WhookConfig, type WhookDefinitions, type WhookOpenAPI } from '@whook/whook'; import { type LogService } from 'common-services'; export interface APIEnv { DEV_MODE?: string; } export interface APIConfig { CONFIG: WhookConfig; BASE_URL?: string; API_VERSION: string; DEFINITIONS?: WhookDefinitions; } export type APIDependencies = APIConfig & { ENV: APIEnv; BASE_URL: string; DEFINITIONS: WhookDefinitions; log?: LogService; }; declare const _default: import("knifecycle").ServiceInitializer; export default _default;