import { FC } from 'react'; import { DatePickerValue, Milliseconds } from './interface'; export interface AbsoluteTimeRangeProps { value?: DatePickerValue; timeVisible: boolean; expand?: boolean; onClick?: () => void; onMoveBackward?: (newValue: DatePickerValue) => void; onMoveForward?: (newValue: DatePickerValue) => void; } export declare const AbsoluteTimeRange: FC; export interface AbsoluteTimeRangeInputProps { from: Milliseconds; to: Milliseconds; onChange?: (from: Milliseconds, to: Milliseconds) => void; } export declare const AbsoluteTimeRangeInput: FC;