import type { VextFrontendDeployUploadAdapterName } from "../frontend/contract/types.js"; interface DeployAssetsCommandOptions { outdir: string; manifest?: string; dryRun: boolean; adapter?: VextFrontendDeployUploadAdapterName; targetDir?: string; prefix?: string; stateFile?: string; configProfile?: string; } export declare function deployCommand(args?: string[]): Promise; export declare function parseDeployAssetsArgs(args: string[]): DeployAssetsCommandOptions; export {};