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