import { Locale } from 'date-fns'; export type Range = { startDate?: Date; endDate?: Date; color?: string; key?: string; autoFocus?: boolean; disabled?: boolean; showDateDisplay?: boolean; label?: string; }; export declare enum DateRangePosition { START = "start", END = "end" } export type DateRangePickerPropsType = { className?: string; buttonClassName?: string; onApply: (range: Range) => void; range: Range; minDate?: Date; maxDate?: Date; position?: DateRangePosition; withoutIcon?: boolean; withChevron?: boolean; disabled?: boolean; locale?: Locale; rtl?: boolean; }; export declare function BCDateRangePicker({ className, onApply, range, minDate, maxDate, position, buttonClassName, withoutIcon, withChevron, disabled, locale, rtl, }: DateRangePickerPropsType): import("@emotion/react/jsx-runtime").JSX.Element;