UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

29 lines 783 B
/// <reference types="react" /> import { LocalVideoTileSize } from '../VideoGallery'; import { LayoutProps } from './Layout'; /** * Props for {@link SpeakerVideoLayout}. * * @private */ export interface SpeakerVideoLayoutProps extends LayoutProps { /** * Whether to display the local video camera switcher button */ showCameraSwitcherInLocalPreview?: boolean; /** * Height of parent element */ parentHeight?: number; /** * Local video tile mode */ localVideoTileSize?: LocalVideoTileSize; } /** * Layout for the gallery mode to highlight the current dominant speaker * * @private */ export declare const SpeakerVideoLayout: (props: SpeakerVideoLayoutProps) => JSX.Element; //# sourceMappingURL=SpeakerVideoLayout.d.ts.map