import * as sinon from "sinon";
import { AWSDeployer } from "./index.js";
export interface Mockable {
    mocks: {
        [key: string]: sinon.SinonStub;
    };
}
export declare function MockAWSDeployerMethods(service: AWSDeployer<any>, test: Mockable): void;
