import type { ExtractPropTypes, PropType } from 'vue'; import type _CalendarPanel from './calendar-panel.vue'; export declare const sdCalendarPanelProps: { readonly date: { readonly type: DateConstructor; readonly required: true; }; readonly today: { readonly type: StringConstructor; readonly default: ""; }; readonly firstDayOfWeek: { readonly type: NumberConstructor; readonly default: 1; }; readonly onlyShowCurrent: { readonly type: BooleanConstructor; readonly default: true; }; readonly selectedDay: { readonly type: PropType; readonly default: () => string; }; readonly cellStyle: { readonly type: FunctionConstructor; }; }; export declare type SdCalendarProps = ExtractPropTypes; export declare type SdCalendarPanelInstance = InstanceType;