/** * Open Veryfront Studio in browser * @module cli/commands/studio */ import { type EnvironmentConfig } from "../../../src/config/index.js"; /** * Build Studio URL with optional query params */ export declare function buildStudioUrl(project: string, options?: { branch?: string; file?: string; }): string; /** * Open Veryfront Studio in browser */ export declare function studioCommand(options?: { project?: string; branch?: string; file?: string; }, env?: EnvironmentConfig): Promise<{ url: string; opened: boolean; }>; //# sourceMappingURL=command.d.ts.map