import React from 'react'; import { IBaseElement } from '../types'; export interface IPath extends IBaseElement { value?: any; } declare const Path: React.FC; export default Path;