communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
21 lines • 843 B
TypeScript
/// <reference types="react" />
import { SpokenLanguageStrings } 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 SpokenLanguageSettingsDrawer: (props: {
selectLanguage: (language: keyof SpokenLanguageStrings) => void;
setCurrentLanguage: (language: keyof SpokenLanguageStrings) => void;
currentLanguage: keyof SpokenLanguageStrings;
onLightDismiss: () => void;
strings?: CaptionSettingsDrawerStrings;
supportedLanguageStrings?: SpokenLanguageStrings;
}) => JSX.Element;
//# sourceMappingURL=SpokenLanguageSettingsDrawer.d.ts.map