/// import { UseControllerProps } from 'react-hook-form'; import { Schema } from '../types/schema.js'; type Props = { placeholder?: string; options: Schema.StringOptions['list'] | undefined; }; declare function RadioGroupList(props: Props & UseControllerProps): JSX.Element | null; export default RadioGroupList;