import { ReactNode } from 'react'; import { DatePickerProps } from './date-picker.doc'; export interface DatePickerPopupProps extends DatePickerProps { /** * Title of the popup, should be an ReactNode */ title?: ReactNode; /** * Footer section of the popup, should be an ReactNode */ footer?: ReactNode; }