import type { Styled } from '../../hooks/useStyled'; import type { CLASSES } from '../vars'; interface DatePickerPanelProps { ref?: React.Ref<(date: Date) => void>; styled: Styled; currentSelected: Date | null; anotherSelected: Date | null; config: ((date: Date) => { disabled?: boolean; }) | undefined; range: boolean; onDateChange: (date: Date) => void; } export declare function DatePickerPanel(props: DatePickerPanelProps): React.ReactElement | null; export {};