UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

20 lines (19 loc) 683 B
import { BaseComponent } from '../../Utilities'; import { ITeachingBubbleProps } from './TeachingBubble.Props'; import { DirectionalHint } from '../../common/DirectionalHint'; export interface ITeachingBubbleState { isTeachingBubbleVisible?: boolean; } export declare class TeachingBubble extends BaseComponent<ITeachingBubbleProps, ITeachingBubbleState> { static defaultProps: { calloutProps: { beakWidth: number; gapSpace: number; setInitialFocus: boolean; doNotLayer: boolean; directionalHint: DirectionalHint; }; }; constructor(props: ITeachingBubbleProps); render(): JSX.Element; }