import * as Types from '../../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type AccountTokenSnapshotLogsQueryVariables = Types.Exact<{
    first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
    skip?: Types.InputMaybe<Types.Scalars['Int']['input']>;
    orderBy?: Types.InputMaybe<Types.AccountTokenSnapshotLog_OrderBy>;
    orderDirection?: Types.InputMaybe<Types.OrderDirection>;
    where?: Types.InputMaybe<Types.AccountTokenSnapshotLog_Filter>;
    block?: Types.InputMaybe<Types.Block_Height>;
}>;
export type AccountTokenSnapshotLogsQuery = {
    accountTokenSnapshotLogs: Array<{
        id: string;
        order: string;
        logIndex: string;
        timestamp: string;
        blockNumber: string;
        balance: string;
        maybeCriticalAtTimestamp?: string | undefined;
        totalAmountStreamed: string;
        totalAmountStreamedIn: string;
        totalAmountStreamedOut: string;
        totalAmountTransferred: string;
        totalApprovedSubscriptions: number;
        totalDeposit: string;
        totalInflowRate: string;
        totalNetFlowRate: string;
        totalNumberOfActiveStreams: number;
        activeOutgoingStreamCount: number;
        activeIncomingStreamCount: number;
        totalNumberOfClosedStreams: number;
        inactiveOutgoingStreamCount: number;
        inactiveIncomingStreamCount: number;
        totalSubscriptionsWithUnits: number;
        totalOutflowRate: string;
        transactionHash: string;
        triggeredByEventName: string;
        account: {
            id: string;
        };
        token: {
            id: string;
            symbol: string;
        };
    }>;
};
export declare const AccountTokenSnapshotLogsDocument: DocumentNode<AccountTokenSnapshotLogsQuery, AccountTokenSnapshotLogsQueryVariables>;
//# sourceMappingURL=accountTokenSnapshotLogs.generated.d.ts.map