import { SupportedChainId } from '../common';
import type { Signer } from 'ethers';
import { TransactionParams } from './types';
export declare function getPreSignTransaction(signer: Signer, chainId: SupportedChainId, account: string, orderId: string): Promise<TransactionParams>;
