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