export type StartOptions = { appLocation?: string; verbose?: boolean; silent?: boolean; }; export type StartResult = { success: boolean; message?: string; error?: Error; }; /** * Display help information about environment variables and debug logging */ export declare function displayHelp(): void; /** * Start the workshop application */ export declare function start(options?: StartOptions): Promise; //# sourceMappingURL=start.d.ts.map