import { Ec2CommandExecutionResult, Ec2CommandContext } from './aws.sso.ec2.types.js';
/**
 * Formats the result of an executed EC2 command into Markdown
 *
 * @param command The shell command that was executed
 * @param result The execution result from SSM
 * @param context Context information including instance ID, account, role, region, and suggested roles
 * @returns Formatted Markdown string
 */
export declare function formatEc2CommandResult(command: string, result: Ec2CommandExecutionResult, context: Ec2CommandContext): string;
