import { Editor } from '../Editor'; export declare type SocketProps = { title: string; type: 'input' | 'output'; id: string; nodeId: string; socketType: string; disabled?: boolean; color?: string; editor: Editor; }; declare const Socket: ({ title, type, id, nodeId, socketType, disabled, color, editor }: SocketProps) => JSX.Element; export default Socket;