import { providers } from "ethers"; import { Deployment } from "../../types"; import { CallSchema } from "./types"; type WaitForTxArguments = { deployment: Deployment; tx: providers.TransactionResponse; name: string; checkResult?: { method: () => Promise; desired?: any; }; chainData?: any; }; export declare const waitForTx: (args: WaitForTxArguments) => Promise<{ receipt: providers.TransactionReceipt; result?: any; }>; export declare const updateIfNeeded: (schema: CallSchema) => Promise; export declare const assertValue: (schema: CallSchema) => Promise; export declare const getValue: (schema: CallSchema) => Promise; export {}; //# sourceMappingURL=tx.d.ts.map