/// <reference types="react" />
interface MenuOption {
    id: string;
    label: string;
    action: () => void;
    disabled?: boolean;
}
export declare const PortalMenuOptions: React.FC<{
    options: MenuOption[];
}>;
export {};
