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