import { PropType } from 'vue'; /** * Interface for maxDays prop. */ export interface MaxDaysProps { maxDays: number; } /** * Defines the maxDays prop for components. */ export declare const useMaxDaysProps: { readonly maxDays: { readonly type: PropType; readonly default: 1; }; };