import type { HardhatRuntimeEnvironment } from "hardhat/types/hre"; import { MockUSDC } from "../../types"; /** * The arguments for the deployAndSaveMockStableToken function */ export interface MockStableTokenArgs { initialSupply?: number; hre: HardhatRuntimeEnvironment; } /** * Deploys the MockStableToken contract and saves the deployment arguments * @param param0 - The deployment arguments * @returns The deployed MockStableToken contract */ export declare const deployAndSaveMockStableToken: ({ initialSupply, hre, }: MockStableTokenArgs) => Promise<{ mockStableToken: MockUSDC; }>; //# sourceMappingURL=mockStableToken.d.ts.map