import { EcsCluster, EcsService, EcsTask, EcsContainer } from './types.js'; /** * List ECS clusters in the account */ export declare function listClusters(profile: string, verbose?: boolean): EcsCluster[]; /** * List ECS services in a cluster */ export declare function listServices(cluster: string, profile: string, verbose?: boolean): EcsService[]; /** * List running tasks for a service in a cluster */ export declare function listTasks(cluster: string, service: string, profile: string, verbose?: boolean): EcsTask[]; /** * Describe a task to get container details */ export declare function describeTask(cluster: string, taskId: string, profile: string, verbose?: boolean): { task: EcsTask; containers: EcsContainer[]; }; //# sourceMappingURL=aws.d.ts.map