import { default as React } from 'react'; export interface DatePickerCoreProps { date: Date; minDate: Date; maxDate: Date; excludedDates: Date[]; minYear: Date; maxYear: Date; withBackground: boolean; align: 'left' | 'right'; withoutDays: boolean; onDateChange?: (date: Date) => void; woDaysMonth?: (props: [number, boolean | undefined]) => void; woDaysYear?: (props: [number, boolean | undefined]) => void; woDaysMonthSubInc?: (val: boolean) => void; className?: string; style?: React.CSSProperties; } export declare const DatePickerCore: React.ForwardRefExoticComponent>;