@azure/communication-react
Version:
React library for building modern communication user experiences utilizing Azure Communication Services
21 lines • 582 B
TypeScript
/// <reference types="react" />
import { IStyle } from '@fluentui/react';
import { CallCompositeIcons } from '../../common/icons';
/**
* @private
*/
export interface NoticePageProps {
iconName?: keyof CallCompositeIcons;
title: string;
moreDetails?: string;
dataUiId: string;
disableStartCallButton?: boolean;
pageStyle?: IStyle;
}
/**
* Generic page with a title and more details text for serving up a notice to the user.
*
* @private
*/
export declare function NoticePage(props: NoticePageProps): JSX.Element;
//# sourceMappingURL=NoticePage.d.ts.map