/// <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