export interface MenuProps {
    loading?: boolean;
    buttons: any[];
    activeIndex: string;
    onActivateButton?: () => Event;
}
