office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
24 lines (23 loc) • 800 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { BaseComponent } from '../../Utilities';
import { ITeachingBubbleProps } from './TeachingBubble.types';
export interface ITeachingBubbleState {
isTeachingBubbleVisible?: boolean;
}
export declare class TeachingBubbleBase extends BaseComponent<ITeachingBubbleProps, ITeachingBubbleState> {
static defaultProps: {
calloutProps: {
beakWidth: number;
gapSpace: number;
setInitialFocus: boolean;
doNotLayer: boolean;
directionalHint: 12;
};
};
rootElement: React.RefObject<HTMLDivElement>;
private _defaultCalloutProps;
constructor(props: ITeachingBubbleProps);
focus(): void;
render(): JSX.Element;
}