web3-mq-react
Version:
web3-mq-react-components
10 lines (9 loc) • 384 B
TypeScript
import React from 'react';
import type { Client, NotifyResponse } from 'web3-mq';
import type { CommonUserInfoType } from '../Chat/hooks/useQueryUserInfo';
export declare type NotificationPreviewProps = {
client: Client;
notification: NotifyResponse;
userInfo?: CommonUserInfoType;
};
export declare const NotificationPreview: React.FC<NotificationPreviewProps>;