import React from 'react'; type InputSocketProps = { children?: React.ReactNode; id?: string; hasError?: boolean; }; declare const InputSocket: ({ id, children, hasError }: InputSocketProps) => React.JSX.Element; export default InputSocket;