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