MenuItem: {
    checked?: boolean;
    disabled?: boolean;
    ellipsis?: boolean;
    hidden?: boolean;
    id: string;
    onClick?: ((item: MenuItem) => void);
    order?: number;
    subTitle?: string;
    tips?: string;
    title: string;
    type: "normal";
} | {
    hidden?: boolean;
    order?: number;
    type: "separator";
}