import { TokenActivity } from '../../types'; export declare const TOKEN_QUERY = "query token($id: ID) {\n token(\n id: $id\n ) {\n id\n address\n totalSupply\n totalUniqueSenders\n totalTransfers\n totalTransferAmount\n createdAt\n updatedAt\n }\n}"; export interface TokenEntity { token: { id: string; address: string; totalSupply: string; totalUniqueSenders: string; totalTransfers: string; totalTransferAmount: string; createdAt: string; updatedAt: string; }; } export declare function transform(entity: TokenEntity): TokenActivity; //# sourceMappingURL=token.d.ts.map