import { PropType } from 'vue' /** * Interface for maxDays prop. */ export interface MaxDaysProps { maxDays: number } /** * Defines the maxDays prop for components. */ export const useMaxDaysProps = { maxDays: { type: Number as PropType, default: 1, }, } as const