botframework-webchat-component
Version:
React component of botframework-webchat
12 lines • 554 B
TypeScript
import React from 'react';
type MessageSensitivityLabelProps = Readonly<{
className?: string | undefined;
color?: string | undefined;
isEncrypted?: boolean | undefined;
name?: string | undefined;
title?: string | undefined;
}>;
declare const MessageSensitivityLabel: React.MemoExoticComponent<({ className, color, isEncrypted, name, title }: MessageSensitivityLabelProps) => React.JSX.Element>;
export default MessageSensitivityLabel;
export type { MessageSensitivityLabelProps };
//# sourceMappingURL=MessageSensitivityLabel.d.ts.map