@fluentui/react
Version:
Reusable React components for building web experiences.
10 lines (9 loc) • 324 B
TypeScript
import * as React from 'react';
import type { IKeytipProps } from './Keytip.types';
/**
* A component corresponding the content rendered inside the callout of the keytip component.
* {@docCategory Keytips}
*/
export declare class KeytipContentBase extends React.Component<IKeytipProps, {}> {
render(): JSX.Element;
}