import { DynamicContentStore } from "../../../../flex-ui-core/src"; import * as React from "react"; export interface ProfileLinkMenuProps { storedMenu: any; doProfileSearch: () => void; displayModal: () => void; disableMenu?: boolean; } export interface ProfileLinkMenuChildrenProps extends ProfileLinkMenuProps { } export declare class ProfileLinkMenu extends React.PureComponent { static readonly displayName = "ProfileLinkMenu"; static readonly Content: DynamicContentStore; static readonly defaultProps: Partial; static updateAll(): void; render(): JSX.Element; }