import './DateTimeSlider.css'; import React from 'react'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; type Data = { label: string | number; current?: boolean; valueRange?: number[]; date: Date; items: { label: string; date: Date; current?: boolean; }[]; }; export type DateTimeSliderProps = PropsWithHTMLAttributes<{ onChange?: (date: Date) => void; onPrev?: () => void; onNext?: () => void; children?: never; data: Data[]; }, HTMLDivElement>; export declare const cnDateTimeSlider: import("@bem-react/classname").ClassNameFormatter; export declare const DateTimeSlider: React.FC; export {};