UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
11 lines (10 loc) 479 B
import { Control, FieldErrors, UseFormRegister } from 'react-hook-form'; import { DRepDataFormValues } from 'types'; type ReferencesSectionProps = { type: 'link' | 'identity'; control: Control<DRepDataFormValues>; errors: FieldErrors<DRepDataFormValues>; register: UseFormRegister<DRepDataFormValues>; }; export declare const ReferencesSection: ({ type, control, errors, register, }: ReferencesSectionProps) => import("react/jsx-runtime").JSX.Element; export {};