office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
10 lines (9 loc) • 388 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { IKeytip, IKeytipProps } from './Keytip.types';
/**
* A callout corresponding to another Fabric component to describe a key sequence that will activate that component
*/
export declare class Keytip extends BaseComponent<IKeytipProps, {}> implements IKeytip {
render(): JSX.Element;
}