1 | import { CircleStyleProps } from '@antv/f-engine';
|
2 | import { GuideProps } from '../withGuide';
|
3 | export interface PointGuideProps extends GuideProps {
|
4 | style?: Partial<CircleStyleProps> | ((record?: any) => Partial<CircleStyleProps>);
|
5 | offsetX?: number | string;
|
6 | offsetY?: number | string;
|
7 | points?: {
|
8 | x: number;
|
9 | y: number;
|
10 | }[] | null;
|
11 | theme?: any;
|
12 | }
|
13 | declare const _default: (props: PointGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
|
14 | export default _default;
|