import React from 'react'; import { UseFormRegisterReturn } from 'react-hook-form'; interface ISelect extends React.SelectHTMLAttributes { options: string[]; id: string; register(): UseFormRegisterReturn; } export default function (props: ISelect): JSX.Element; export {};