import React from "react";
import "./Ui89MenuCard.css";
export interface Ui89MenuCardPropsOption {
    type?: "item" | "separator";
    label?: string;
    onClick?: () => void;
    href?: string;
    disabled?: boolean;
    oppositeLabel?: React.ReactNode;
}
export interface Ui89MenuCardProps {
    options: Ui89MenuCardPropsOption[];
}
export declare const Ui89MenuCard: React.FC<Ui89MenuCardProps>;
