rsuite
Version:
A suite of react components
13 lines (12 loc) • 561 B
TypeScript
import React from 'react';
import { OverlayTriggerHandle, OverlayTriggerProps } from '../internals/Overlay/OverlayTrigger';
export type WhisperProps = OverlayTriggerProps;
export type WhisperInstance = OverlayTriggerHandle;
/**
* The `Whisper` component is used to display a floating element.
* It is usually used with the `Tooltip` and `Popover` components.
*
* @see https://rsuitejs.com/components/whisper
*/
declare const Whisper: React.ForwardRefExoticComponent<OverlayTriggerProps & React.RefAttributes<OverlayTriggerHandle>>;
export default Whisper;