import React from 'react'; import type * as CSS from 'csstype'; export interface PointerProps extends React.HTMLAttributes { prefixCls?: string; top?: CSS.Properties['top']; left: CSS.Properties['left']; color?: string; } export declare const Pointer: ({ className, color, left, top, prefixCls }: PointerProps) => JSX.Element;