import { SignableRequestTypeToEIP712Values } from './eip712ValueTypes.js'; import { SignableRequestType, SignableRequestTypeToParams } from './signableRequestType.js'; import '@nadohq/utils'; import 'viem'; import './signatureParamTypes.js'; import '../common/types/subaccountTypes.js'; import '../common/types/bytes.js'; /** * Returns the EIP712 compatible values for signing. * * Note: We use the string representation of bigint to be compatible with JSON.stringify * * @param requestType * @param params */ declare function getNadoEIP712Values(requestType: TReqType, params: SignableRequestTypeToParams[TReqType]): SignableRequestTypeToEIP712Values[TReqType]; export { getNadoEIP712Values };