import { VElement, HAttributes } from "solenya"; export declare type MenuOption = { label: string | VElement; action?: () => void; }; interface MenuViewProps { label: string; isSelected: boolean; options: MenuOption[]; attrs?: HAttributes; } export declare const menuView: (props: MenuViewProps) => VElement; export {};