import { RawTransaction } from "./types.js"; export interface OrderToCancel { orderType: 'buy' | 'sell'; option: bigint; pricePerShare: bigint; orderId: bigint; } export interface InternalCancelOrdersParams { marketContractAddress: `0x${string}`; orders: OrderToCancel[]; } export declare function buildCancelOrdersRawTx(params: InternalCancelOrdersParams): RawTransaction[];