import { Props } from '../DatePicker'; declare enum DateRangeType { Primary = 0, Secondary = 1 } type ModifiedProps = Props & { onChange: (arg1: { startDate: Date; endDate: Date; }) => void; selectedRange: DateRangeType; secondaryRangeStartDate?: Date | null; secondaryRangeEndDate?: Date | null; }; declare const InternalDatePickerWithForwardRef: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default InternalDatePickerWithForwardRef;