import { PumActionHistory } from '../../../types'; export declare const PUM_ACTION_HISTORY_QUERY = "query pumActionHistories($limit: Int, $offset: Int, $user: Bytes!) {\n pumActionHistories(\n first: $limit\n skip: $offset\n orderBy: createdAt\n orderDirection: desc\n where: {\n user: $user\n }\n ) {\n id\n user {\n id\n name\n }\n token {\n id\n name\n symbol\n issuer {\n name\n address\n }\n }\n action\n recipient {\n id\n name\n }\n amountIn\n amountOut\n txHash\n createdAt\n }\n}"; export declare const PUM_TIMELINE_QUERY = "query pumTimeline($limit: Int, $offset: Int) {\n pumActionHistories(\n first: $limit\n skip: $offset\n orderBy: createdAt\n orderDirection: desc\n ) {\n id\n user {\n id\n name\n }\n token {\n id\n name\n symbol\n issuer {\n name\n address\n }\n }\n action\n recipient {\n id\n name\n }\n amountIn\n amountOut\n txHash\n createdAt\n }\n}"; export interface PumActionHistoryEntities { pumActionHistories: { id: string; user: { id: string; name?: string; }; token: { id: string; name: string; symbol: string; issuer: { name: string; address: string; }; } | null; action: string; recipient: { id: string; name?: string; } | null; amountIn: string | null; amountOut: string | null; txHash: string; createdAt: string; }[]; } export declare function transform(entity: PumActionHistoryEntities): PumActionHistory[]; //# sourceMappingURL=pum-action-history.d.ts.map