import React from 'react'; import { FunctionDesc, ClientConn } from '@ticlo/core/editor'; import { DragState } from 'rc-dock/lib'; export declare type OnTypeClick = (name: string, desc: FunctionDesc, data: any) => void; interface Props { conn: ClientConn; desc: FunctionDesc; name?: any; data?: any; onClick?: OnTypeClick; } export declare class TypeView extends React.PureComponent { onDrag: (e: DragState) => void; onClick: (e: React.MouseEvent) => void; render(): JSX.Element; } export {};