import { ButtonProps } from '@chakra-ui/react'; import { FC } from 'react'; export interface CallDataModalProps extends ButtonProps { calldata: string; label: string; title: string; isOpen: boolean; onClose: () => void; onOpen: () => void; alignRight?: boolean; } export declare const CallDataModal: FC;