import { TokenDistributeRequestEntity } from '../../types'; export declare const TOKEN_DISTRIBUTE_REQUESTS_QUERY = "query tokenDistributeRequests($limit: Int, $offset: Int, $address: Bytes!) {\n tokenDistributeRequests(\n first: $limit\n skip: $offset\n orderBy: createdAt\n orderDirection: desc\n where: {sender: $address}\n ) {\n id\n status\n name\n maxAmountPerAddress\n expiry\n token {\n id\n }\n sender {\n id\n name\n }\n coordinate\n cooltime\n amountPerWithdrawal\n amount\n totalAmount\n createdAt\n txHash\n }\n }"; export interface TokenDistributeRequestsEntities { tokenDistributeRequests: { id: string; status: 'PENDING' | 'COMPLETED' | 'CANCELLED'; name: string; maxAmountPerAddress: string; expiry: string; token: { id: string; }; sender: { id: string; name?: string; }; coordinate: string; cooltime: string; amountPerWithdrawal: string; amount: string; totalAmount: string; createdAt: string; txHash: string; }[]; } export declare function transform(entities: TokenDistributeRequestsEntities): TokenDistributeRequestEntity[]; //# sourceMappingURL=token-distributions.d.ts.map