import { BigNumberish, BytesLike, Signer } from "ethers"; import { GnosisSafeL2 } from "../typechain-types"; export declare enum OPERATION { CALL = 0, DELEGATE_CALL = 1, CREATE = 2 } export declare const adjustV: (signature: string) => string; export declare const knownVAdjust: (signature: string) => string; type Address = string; export declare const signer: (safe: GnosisSafeL2, signer: Signer, to: Address, value: BigNumberish, data: BytesLike, operation: OPERATION, txGasEstimate: BigNumberish, baseGasEstimate: BigNumberish, gasPrice: BigNumberish, txGasToken: Address, refundReceiver: Address, nonce: BigNumberish) => Promise; export {};