import { ArcStyleProps } from '@antv/f-engine'; import { GuideProps } from '../withGuide'; export interface ArcGuideProps extends GuideProps { points?: { x: number; y: number; }[] | null; style?: Partial | ((record?: any) => Partial); theme?: any; } declare const _default: (props: ArcGuideProps) => import("@antv/f-engine").JSX.Element; export default _default;