/** * Human progress text for Deploy Execution step events. * * Shared by every presentation adapter that renders `DeployProject.execute` * progress (the deploy command, `veryfront up`) so the same step always reads * the same way. * * @module cli/shared/deployment/progress */ import type { DeployEvent } from "./deploy-project.js"; /** Text a spinner should show for a step event, or null when nothing changes. */ export declare function deployProgressText(event: Extract, environment: string, verbose: boolean): string | null; /** First line a spinner shows before Deploy Execution emits its first step. */ export declare function initialDeployProgressText(verbose: boolean): string; //# sourceMappingURL=progress.d.ts.map