import { Lang } from '@scandic-hotels/common/constants/language' import type { RegisterOptions } from 'react-hook-form' export const enum DateName { date = 'date', day = 'day', month = 'month', year = 'year', } export interface DateProps extends React.SelectHTMLAttributes { labels: { day: string month: string year: string errorMessage?: string } lang: Lang name: string registerOptions?: RegisterOptions }