react-custom-tours
Version:
A library with tips that you can attach to blocks on your sites so that users can more easily understand how to use your site
16 lines (15 loc) • 472 B
TypeScript
import { TipDataItemWithNode } from '../../shared/types';
type Props = {
item: TipDataItemWithNode;
itemRect: DOMRect;
prevItem: undefined | TipDataItemWithNode;
nextItem: undefined | TipDataItemWithNode;
countItems: number;
itemIdx: number;
isLoading: boolean;
onNext: () => void;
onPrev: () => void;
onClose: () => void;
};
declare const Tooltip: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default Tooltip;