import { ButtonProps } from '@dodoex/components'; import React from 'react'; import { ChainId } from '@dodoex/api'; export default function NeedConnectButton({ chainId, includeButton, ...props }: ButtonProps & { /** chainId that needs to be connected */ chainId?: ChainId; includeButton?: boolean; }): React.JSX.Element;