import { ClassValue } from '../commonTypes'; import { ExtractPropTypes, PropType } from 'vue'; export declare const calendarInputDateProps: { inputClass: PropType; timestamp: { type: PropType; default: number; }; format: { type: PropType; default: string; }; language: { type: PropType; default: string; }; }; export type CalendarInputDateProps = ExtractPropTypes; export declare const calendarInputDateEmits: import('../../utils/helpers').InferRecord<{ change: (_d: Date) => boolean; }>; export type CalendarInputDateEmits = typeof calendarInputDateEmits;