UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

27 lines (26 loc) 917 B
/// <reference types="react" /> import { BaseComponent } from '../../Utilities'; import { ITeachingBubbleProps } from './TeachingBubble.types'; import { ITeachingBubbleState } from './TeachingBubble.base'; import { ImageFit } from '../../Image'; export declare class TeachingBubbleContentBase extends BaseComponent<ITeachingBubbleProps, ITeachingBubbleState> { static defaultProps: { hasCondensedHeadline: boolean; imageProps: { imageFit: ImageFit; width: number; height: number; }; }; rootElement: { (component: HTMLDivElement | null): void; current: HTMLDivElement | null; value: HTMLDivElement | null; }; constructor(props: ITeachingBubbleProps); componentDidMount(): void; componentWillUnmount(): void; focus(): void; render(): JSX.Element; private _onKeyDown; }