import { type Address, type ChainId } from "@morpho-org/blue-sdk"; import type { TypedDataDefinition } from "viem"; interface MorphoAaveV3ManagerApprovalArgs { delegator: Address; manager: Address; nonce: bigint; deadline: bigint; isAllowed: boolean; } declare const morphoAaveV3ManagerApprovalTypes: { readonly Authorization: readonly [{ readonly name: "delegator"; readonly type: "address"; }, { readonly name: "manager"; readonly type: "address"; }, { readonly name: "isAllowed"; readonly type: "bool"; }, { readonly name: "nonce"; readonly type: "uint256"; }, { readonly name: "deadline"; readonly type: "uint256"; }]; }; export declare const getMorphoAaveV3ManagerApprovalTypedData: (args: MorphoAaveV3ManagerApprovalArgs, chainId: ChainId) => TypedDataDefinition; export {};