///
import type { Client, EventTypes, NotifyResponse } from 'web3-mq';
export declare const usePaginatedNotifications: (client: Client) => {
notifications: NotifyResponse[] | null;
unReadCount: number | undefined;
handleEvent: (props: {
type: EventTypes;
}) => void;
handleFirendRequest: (targetIUserid: string, action: any) => Promise;
setNotifications: import("react").Dispatch>;
};