import { FC } from "react"; export declare enum ActionType { Deposit = "Deposit", Transfer = "Transfer", BuyCoin = "BuyCoin" } export interface ActionButtonProps { text: string; type: ActionType; coin: string; onClick?: () => void; } export interface Props extends ActionButtonProps { className?: string; } export declare const ActionButton: FC;