import type { AutomationDTO, OSCOutput } from 'ontime-types'; import type { UseFormRegister } from 'react-hook-form'; import Input from '../../../../common/components/input/input/Input'; import * as Panel from '../../panel-utils/PanelUtils'; import type { OutputErrors } from './automationUtils'; import TemplateInput from './template-input/TemplateInput'; import style from './AutomationForm.module.scss'; interface OscOutputFormProps { index: number; output: OSCOutput; register: UseFormRegister; rowErrors?: OutputErrors; } export default function OscOutputForm({ index, output, register, rowErrors }: OscOutputFormProps) { return ( <> ); }