communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
21 lines • 603 B
TypeScript
/// <reference types="react" />
import { OnRenderAvatarCallback } from '../types';
import { CaptionsInformation } from './CaptionsBanner';
/**
* @internal
* Props for a single line of caption.
*/
export interface _CaptionProps extends CaptionsInformation {
/**
* Optional callback to override render of the avatar.
*
* @param userId - user Id
*/
onRenderAvatar?: OnRenderAvatarCallback;
}
/**
* @internal
* A component for displaying a single line of caption
*/
export declare const _Caption: (props: _CaptionProps) => JSX.Element;
//# sourceMappingURL=Caption.d.ts.map