import type { HardhatRuntimeEnvironment } from "hardhat/types/hre"; import { E3RefundManager } from "../../types"; /** * The arguments for the deployAndSaveE3RefundManager function */ export interface E3RefundManagerArgs { owner?: string; enclave?: string; treasury?: string; hre: HardhatRuntimeEnvironment; } /** * Deploys the E3RefundManager contract and saves the deployment arguments * @param param0 - The deployment arguments * @returns The deployed E3RefundManager contract */ export declare const deployAndSaveE3RefundManager: ({ owner, enclave, treasury, hre, }: E3RefundManagerArgs) => Promise<{ e3RefundManager: E3RefundManager; }>; //# sourceMappingURL=e3RefundManager.d.ts.map