GetActiveAlertsQuery: {
    __typename?: "NotifiQuery";
    activeAlerts?: {
        __typename?: "ActiveAlertsConnection";
        nodes?: {
            __typename: "ActiveAlert";
            filterOptionsJson?: string;
            fusionEventId?: string;
            id?: string;
            subscriptionValue?: string;
            user: {
                __typename: "ActiveAlertOwner";
                connectedWallets?: ({
                    __typename?: ...;
                    address?: ...;
                    walletBlockchain: ...;
                } | undefined)[];
                id: string;
            };
        }[];
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string;
            hasNextPage: boolean;
        };
    };
}