import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type CONTINUE_SYMBOL, type RETURN_SYMBOL } from '../../helpers/types'; export interface JobPreDeployWorkspaceOptions { workspaceRoot: string; identity: Identity; namespace: string; cwd: string; yes?: boolean; } export default function jobPreDeployWorkspace(options: JobPreDeployWorkspaceOptions): Promise;