web3-mq-react
Version:
web3-mq-react-components
12 lines (11 loc) • 388 B
TypeScript
import type { EventTypes, Client } from 'web3-mq';
export declare const useSelectedContacts: (client: Client) => {
contacts: any[];
selectedContacts: any[];
handleCleanSelected: () => void;
handleEvent: (props: {
type: EventTypes;
}) => void;
handleDeleteContact: (delContact: any) => void;
handleSelectedContact: (contact: any) => void;
};