import { PropType } from 'vue'; /** * Interface for maxDays prop. */ export interface MaxDaysProps { maxDays: number; } /** * Defines the maxDays prop for components. */ export declare const useMaxDaysProps: { /** * Maximum number of days rendered by day-like views. * * @category display */ readonly maxDays: { readonly type: PropType; readonly default: 1; }; };