import React from 'react'; export interface DPanelProps { dDateCurrentSelected: Date | null; dDateAnotherSelected: Date | null; dConfigDate: ((date: Date) => { disabled?: boolean; }) | undefined; onDateChange: (date: Date) => void; } export declare const DPanel: React.ForwardRefExoticComponent void>>;