export declare class SpyMenuItem {
    id: string;
    text: string;
    hidden: (() => boolean) | boolean;
    disabled: (() => boolean) | boolean;
    constructor(id: string, text: string);
}
