import * as Types from '../../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type PoolMembersQueryVariables = Types.Exact<{
    first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
    skip?: Types.InputMaybe<Types.Scalars['Int']['input']>;
    orderBy?: Types.InputMaybe<Types.PoolMember_OrderBy>;
    orderDirection?: Types.InputMaybe<Types.OrderDirection>;
    where?: Types.InputMaybe<Types.PoolMember_Filter>;
    block?: Types.InputMaybe<Types.Block_Height>;
}>;
export type PoolMembersQuery = {
    poolMembers: Array<{
        id: string;
        createdAtTimestamp: string;
        createdAtBlockNumber: string;
        updatedAtTimestamp: string;
        updatedAtBlockNumber: string;
        units: string;
        isConnected: boolean;
        totalAmountClaimed: string;
        totalAmountReceivedUntilUpdatedAt: string;
        poolTotalAmountDistributedUntilUpdatedAt: string;
        syncedPerUnitFlowRate: string;
        syncedPerUnitSettledValue: string;
        pool: {
            id: string;
            token: {
                id: string;
            };
        };
        account: {
            id: string;
        };
    }>;
};
export declare const PoolMembersDocument: DocumentNode<PoolMembersQuery, PoolMembersQueryVariables>;
//# sourceMappingURL=poolMembers.generated.d.ts.map