import type { Command } from "commander"; export interface ProjectCommandOptions { project: string; env?: string; verbose?: string[]; } export declare function resolveInheritedVerbose(command: Command, verbose?: string[]): string[] | undefined; export declare function validateProjectExists(projectFolder: string): Promise;