import { DokkimiConfig } from '@dokkimi/config'; export interface ServiceStatus { running: boolean; startedAt: string | null; healthy: boolean; pid: number | null; port: number; detail?: string; } export declare function ensureServicesRunning(appRoot: string, config: DokkimiConfig, timeoutMs?: number, signal?: AbortSignal): Promise; export declare function shutdownServices(): Promise; export declare function getServiceStatus(config: DokkimiConfig): Promise; export declare function resolveAppRoot(callerDirname: string): string;