import { Events, PathSimplifierOptionsProps, PathNavigatorOptionsProps } from '../../types'; export interface PathProps { data?: any[] | []; events?: Events; pathSimplifierOptions: PathSimplifierOptionsProps; pathSimplifierRef?: (ref: any) => any; pathNavigatorOptions?: PathNavigatorOptionsProps; animate?: boolean; fitAvoid?: any; } declare function PathSimplifierCom(props: PathProps): null; export default PathSimplifierCom;