import * as React from "react"; import { SideLinkItemChildrenProps, SideLinkItemProps, SideLinkItemState } from "../SideLink/SideLink.definitions"; /** * @class SideLinkAgentDesktop * @classdesc This component renders side link for Agent desktop view. * @component * @hideconstructor * @category Components / Basic * @param {SideLink.SideLinkItemProps} props - Properties to be passed to configure this component. * @private */ export declare class SideLinkAgentDesktop extends React.PureComponent { private static getBadgeChildren; /** * Default properties * * @static * @type {SideLink.SideLinkItemChildrenProps} * @readonly */ static defaultProps: SideLinkItemChildrenProps; constructor(props: SideLinkItemProps); setBadgeDisplayed: (displayed: boolean) => void; private gotoAgentDesktop; render(): JSX.Element; }