export type BettorFragment = {
    __typename?: 'Bettor';
    id: string;
    rawToPayout: string;
    rawInBets: string;
    rawTotalPayout: string;
    rawTotalProfit: string;
    betsCount: number;
    wonBetsCount: number;
    lostBetsCount: number;
};
export declare const BettorFragmentDoc: import("graphql/language/ast").DocumentNode;
