communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
21 lines • 850 B
TypeScript
/// <reference types="react" />
import { CaptionLanguageStrings } from "../../../../../react-components/src";
/** @private */
export interface CaptionSettingsDrawerStrings {
/**
* Label for spoken language/caption language drawerMenuItem
*
* @remarks Only displayed when in Teams call, disabled until captions is on
*/
menuTitle: string;
}
/** @private */
export declare const CaptionLanguageSettingsDrawer: (props: {
selectLanguage: (language: keyof CaptionLanguageStrings) => void;
setCurrentLanguage: (language: keyof CaptionLanguageStrings) => void;
currentLanguage: keyof CaptionLanguageStrings;
onLightDismiss: () => void;
strings?: CaptionSettingsDrawerStrings;
supportedLanguageStrings?: CaptionLanguageStrings;
}) => JSX.Element;
//# sourceMappingURL=CaptionLanguageSettingsDrawer.d.ts.map