import PropTypes from 'prop-types'; export interface RangeDatePickerProps { startDate: Date; endDate: Date; onStartChange: (date: Date) => void; onEndChange: (date: Date) => void; className?: string; [props: string]: any; } export declare const RangeDatePicker: { ({ startDate, onStartChange, endDate, onEndChange, className, ...props }: RangeDatePickerProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { className: PropTypes.Requireable; startDate: PropTypes.Requireable; endDate: PropTypes.Requireable; }; };