import React from 'react'; import '../g.scss'; declare function UrlInput(props: IUrlInput): React.JSX.Element; export default UrlInput; export interface IUrlInput { value: { url: string; type: string; }; change: Function; } export interface NodeData { title: string; key: string | number; folderId?: string | number; selectable?: boolean; children?: NodeData[]; }