import React from 'react'; import { ChainId } from '@dcl/schemas/dist/dapps/chain-id'; export type DefaultProps = { className: string; target: string; text: string; }; export type Props = Partial & { address: string; txHash: string; chainId?: ChainId; children: React.ReactNode; }; export type MapStateProps = Pick; export type MapDispatchProps = {}; export type OwnProps = Pick;