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