import * as Types from './types';
export type BettorsQueryVariables = Types.Exact<{
    where: Types.Bettor_Filter;
}>;
export type BettorsQuery = {
    __typename?: 'Query';
    bettors: Array<{
        __typename?: 'Bettor';
        id: string;
        rawToPayout: string;
        rawInBets: string;
        rawTotalPayout: string;
        rawTotalProfit: string;
        betsCount: number;
        wonBetsCount: number;
        lostBetsCount: number;
    }>;
};
export declare const BettorsDocument: import("graphql/language/ast").DocumentNode;
