import { DynamicContentStore, RankedProfile } from "../../../flex-ui-core/src"; import * as React from "react"; import { TaskContextProps } from "../../context"; export interface ProfileHeaderAndLinkMenuProps { rankedProfile: RankedProfile | undefined; profileConnectorInstanceSid: string; bridgeLabel: string; isTaskUnlinked: boolean; disableMenu?: boolean; showMenu: boolean; doProfileSearch: () => void; displayModal: () => void; } export interface ProfileHeaderAndLinkMenuChildrenProps extends TaskContextProps, ProfileHeaderAndLinkMenuProps { } export declare class ProfileHeaderAndLinkMenu extends React.PureComponent { static readonly displayName = "ProfileHeaderContainer"; static readonly Content: DynamicContentStore; static readonly defaultProps: Partial; static updateAll(): void; render(): JSX.Element; }