UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

14 lines (13 loc) 437 B
/// <reference types="react" /> import { BaseComponent } from '../../Utilities'; import { IKeytipProps } from './Keytip.types'; /** * A component corresponding the the content rendered inside the callout of the keytip component. * * @export * @class KeytipContent * @extends {BaseComponent<IKeytipProps>} */ export declare class KeytipContentBase extends BaseComponent<IKeytipProps, {}> { render(): JSX.Element; }