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