import { type BatchStepModel, type Ctx } from './build-model.js';
import { type CommandLineInput } from './execution.js';
import { type Result } from './railway.js';
type ExpandedCommandLineInputs = Result<CommandLineInput[], {
    messages: string[];
}>;
export declare const expandBatchStep: (ctx: Ctx, batchStep: BatchStepModel) => ExpandedCommandLineInputs;
export {};
