import { OrderTypedData } from './types';
import { UnsignedOrder } from '../order-signing';
import { SupportedChainId } from '../common';
export declare function getOrderTypedData(chainId: SupportedChainId, orderToSign: UnsignedOrder): Promise<OrderTypedData>;
