type $$ComponentProps = {
    focusedMonth: number;
    focusedYear: number;
    dateValidator: (date: string) => boolean;
    chosenDate: string;
};
declare const CalendarPicker: import("svelte").Component<$$ComponentProps, {}, "chosenDate">;
type CalendarPicker = ReturnType<typeof CalendarPicker>;
export default CalendarPicker;
