UNPKG

@keen.io/ui-core

Version:

Keen visual components library

14 lines (13 loc) 348 B
import { FC } from 'react'; import { Timeframe } from '@keen.io/query'; declare type Props = { id: string; start: string; end: string; onChange: (time: Timeframe) => void; timezone: string; startDateLabel: string; endDateLabel: string; }; declare const AbsoluteTime: FC<Props>; export default AbsoluteTime;