import { GraphQLClient } from 'graphql-request'; import { ClaimedPrize } from '../types'; /** * Subgraphs to query for depositors */ export declare const getPrizePoolSubgraphUri: (chainId: number) => string; export declare const getPrizePoolSubgraphClient: (chainId: number) => GraphQLClient; /** * Pulls from the subgraph all of the claimed prizes for a specific draw * * @returns {Promise} Promise of an array of ClaimedPrize objects */ export declare const getSubgraphClaimedPrizes: (chainId: number, drawId: string) => Promise;