communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
21 lines • 946 B
TypeScript
/// <reference types="react" />
import { IContextualMenuProps } from '@fluentui/react';
import { ParticipantMenuItemsCallback, _DrawerMenuItemProps } from "../../../../react-components/src";
import { AvatarPersonaDataCallback } from '../common/AvatarPersona';
import { ParticipantRole } from '@azure/communication-calling';
/**
* @private
*/
export declare const PeoplePaneContent: (props: {
inviteLink?: string;
onFetchAvatarPersonaData?: AvatarPersonaDataCallback;
onFetchParticipantMenuItems?: ParticipantMenuItemsCallback;
setDrawerMenuItems: (drawerMenuItems: _DrawerMenuItemProps[]) => void;
setParticipantActioned?: (userId: string) => void;
mobileView?: boolean;
participantListHeadingMoreButtonProps?: IContextualMenuProps;
pinnedParticipants?: string[];
role: ParticipantRole | undefined;
alternateCallerId: string | undefined;
}) => JSX.Element;
//# sourceMappingURL=PeoplePaneContent.d.ts.map