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