import { type WorkflowContext } from '../protocols/index.js'; export interface CliGlobalArgs { keyId: string; region: string; expectedAddress?: string; policyConfig?: string; } export declare function parseGlobalArgs(argv: string[]): CliGlobalArgs; export declare function buildWorkflowContext(args: CliGlobalArgs): WorkflowContext; export declare function buildDryRunContext(args?: Partial): WorkflowContext;