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<MaxDaysProps["maxDays"]>;
        readonly default: 1;
    };
};
