import { Command } from 'commander'; import { stageRemoteWorkforceBundle, validateRemoteWorkforceBundle } from '../../services/workforce-bundle-remote'; import { runRemoteBundleCandidateTests } from '../../services/workforce-remote-operations'; export declare function executeEmployeeBundleDeployment(input: { bundleDir: string; contextManifestPath: string; targetOrg: string; expectedActiveReleaseSetId: string; expectedGeneration: number; targetAgentId?: string | null; suite: 'employee' | 'all'; }, ports?: { validate: typeof validateRemoteWorkforceBundle; stage: typeof stageRemoteWorkforceBundle; test: typeof runRemoteBundleCandidateTests; }): Promise<{ stage: import("../../services/api-client").CandidateStageReceiptResult; evidence: import("../../services/api-client").CandidateTestRunResult; }>; export declare function employeeCandidateExitCode(evidence: { passed: boolean; }): 0 | 1; export declare const employeeDeployCommand: Command;