import React from 'react';
import './style.scss';
interface DateRangePickerProps {
    value: string | null;
    onChange: (dateRange: string) => void;
    label?: string | JSX.Element;
    placeholder?: string;
    showTimeInput?: boolean;
    className?: string;
    disabled?: boolean;
    size?: string;
    id?: string;
    clearable?: boolean;
    endDatePlaceholder: string;
    startDatePlaceholder: string;
    disableStartDate: boolean;
    showMonthYearPicker: boolean;
    disableEndDate: boolean;
    maxStartDate?: string;
    minStartDate?: string;
    maxEndDate?: string;
    minEndDate?: string;
    required?: boolean;
    labels?: {
        month: string;
        day: string;
        Apply: string;
        week: string;
        Select: string;
        Last: string;
        Start_Date: string;
        End_Date: string;
        Selected_Date: string;
    };
}
declare const ArenaDateRange: React.FC<DateRangePickerProps>;
export default ArenaDateRange;
