import { ControllerResponse } from '../types/common.types.js';
/**
 * Execute a shell command on an EC2 instance via SSM
 *
 * @param options Command execution options
 * @returns Controller response containing the formatted command output
 * @throws Error if the command execution fails
 */
export declare function executeEc2Command(options: {
    instanceId: string;
    accountId: string;
    roleName: string;
    command: string;
    region?: string;
}): Promise<ControllerResponse>;
declare const _default: {
    executeEc2Command: typeof executeEc2Command;
};
export default _default;
