import { FlexProps } from '@chakra-ui/react'; import { FC } from 'react'; interface AddressActionsProps extends FlexProps { address: string; networkId: string; isTransaction?: boolean; } export declare const AddressActions: FC; export {};