UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

23 lines (22 loc) 787 B
import * as React from '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: React.RefObject<HTMLDivElement>; constructor(props: ITeachingBubbleProps); componentDidMount(): void; componentWillUnmount(): void; focus(): void; render(): JSX.Element; private _onKeyDown; }