import React from 'react'; export interface MenuProps { text?: string; items?: Array<{ title?: string; label?: string; key?: string; }>; value?: string; onClick?: (key: string) => void; showDefaultText?: boolean; top?: string; onUpdate?: Function; } export declare const Menu: (props: MenuProps) => React.JSX.Element;