import { CircleStyleProps } from '@antv/f-engine';
type PointGuideProps = {
    style?: CircleStyleProps;
    offsetX?: number;
    offsetY?: number;
    points?: {
        x: number;
        y: number;
    }[] | null;
    theme?: any;
};
declare const _default: (props: PointGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
export default _default;
