import { SignableRequestTypeToEIP712Values } from './eip712ValueTypes.cjs'; import { SignableRequestType, SignableRequestTypeToParams } from './signableRequestType.cjs'; import '@nadohq/utils'; import 'viem'; import './signatureParamTypes.cjs'; import '../common/types/subaccountTypes.cjs'; import '../common/types/bytes.cjs'; /** * 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 };