import type { Ref, MouseEvent } from 'react'; import type { ForwardRefForwardPropsComponent, NoChildrenProp, SentimentProps, FieldValueListItemProps, MenuItemProps } from '@pega/cosmos-react-core'; export interface ChatHeaderProps extends NoChildrenProp { /** ref to the element */ ref?: Ref; /** Title: Used to show channel || group name */ title: string; /** Icon: Used to show the channel icons, pass the icon name from the cosmos library to render */ icon?: string; /** Used to show customer name || handle */ customer: string; /** Authentication status of the customer * @default false */ authenticated?: boolean; /** Sentiment */ sentiment?: SentimentProps; /** Contextual information */ context?: { heading?: string; loading?: boolean; onClick?: (e: MouseEvent) => void; items: FieldValueListItemProps[]; }; /** Used to show frequent user actions to be performed */ actions?: MenuItemProps[]; } declare const ChatHeader: ForwardRefForwardPropsComponent; export default ChatHeader; //# sourceMappingURL=ChatHeader.d.ts.map