//#region src/cli.d.ts declare function detectPackageManager(): 'pnpm' | 'yarn' | 'bun' | 'npm'; declare function isRailwayEnvironment(): boolean; declare function isRenderEnvironment(): boolean; declare function getDeploymentConfig(): { port: string; mode: string; host: string; }; //#endregion export { detectPackageManager, getDeploymentConfig, isRailwayEnvironment, isRenderEnvironment };