urbi-exhibitions
Version:
8 lines (7 loc) • 424 B
TypeScript
import { PropsWithChildren } from 'react';
export type PovTooltipPosition = 'top' | 'bottom' | 'top-left' | 'top-right' | 'left' | 'right' | 'bottom-left' | 'bottom-right';
interface PovMarkerProps {
tooltipPosition?: PovTooltipPosition;
}
export declare const PovMarker: import('react').MemoExoticComponent<({ tooltipPosition, children, }: PropsWithChildren<PovMarkerProps>) => import("react").JSX.Element>;
export {};