import { TypedDataDomain } from 'abitype'; /** * Gives the EIP712 data domain for order signing * * @param contractAddress usually the address of the orderbook (for orders) or sequencer (for other operations) * @param chainId */ declare function getNadoEIP712Domain(contractAddress: string, chainId: number): TypedDataDomain; export { getNadoEIP712Domain };