import { SwapHistoryItem } from '../../types'; export declare const ORDER_FILLED_HISTORY_QUERY = "query swapV1Histories($limit: Int, $offset: Int, $address: Bytes!) {\n swapV1Histories(\n first: $limit\n skip: $offset\n orderBy: createdAt\n orderDirection: desc\n where: {swapper: $address}\n ) {\n id\n reactor\n token {\n id\n }\n swapper {\n id\n name\n }\n amount\n outputs {\n id\n token {\n id\n }\n amount\n recipient {\n id\n name\n }\n }\n createdAt\n txHash\n }\n }"; export interface OrderFilledHistoryEntity { swapV1Histories: { id: string; reactor: string; token: { id: string; }; swapper: { id: string; name: string; }; amount: string; outputs: { id: string; token: { id: string; }; amount: string; recipient: { id: string; name: string; }; }[]; createdAt: string; txHash: string; }[]; } export declare function transform(entities: OrderFilledHistoryEntity): SwapHistoryItem[]; //# sourceMappingURL=order-history.d.ts.map