import { Command } from 'commander'; import { Config } from '../config.js'; export declare function makeStartCommand(): Command; interface StartSettings { detach?: boolean; exitOnDetached?: boolean; withPostgres?: boolean; config: Config; } export declare function start(options: StartSettings): Promise; export {};