import { ComponentType } from '@antv/f-engine'; import Chart, { ChartChildProps, Point } from '../../chart'; import { AnimationProps } from '@antv/f-engine'; export interface GuideProps { records: any; onClick?: (ev: any) => void; animation?: ((points: Point[], chart: Chart) => AnimationProps) | AnimationProps; [key: string]: any; } export default function (View: ComponentType): ComponentType;