import type { DbScripts } from '../../types/cli'; export declare const COMPOSE_PATH = "db/docker-compose.db.yml"; export declare const DEFAULT_SERVER_ENTRY = "src/backend/server.ts"; export declare const isWSLEnvironment: () => boolean; export declare const findFreePort: () => number; export declare const killStaleProcesses: (port: number, logMessage?: (message: string) => void) => void; export declare const openUrlInBrowser: (url: string, onError?: (message: string) => void) => boolean; export declare const printHelp: (subject?: string) => void; export declare const printHint: () => void; export declare const readDbScripts: () => Promise<{ downCommand: string; upCommand: string; } | null>; export declare const startDatabase: (scripts: DbScripts) => Promise; export declare const stopDatabase: (scripts: DbScripts) => Promise; export declare const timed: (label: string, task: () => Promise) => Promise;