import { ISegmentConfigShape } from '../types/Segment'; import { TimeSegment } from './TimeSegment'; /** * Counts up in time. In otherwords, it's ascending time. */ export declare class CountupSegment extends TimeSegment { config: ISegmentConfigShape; constructor(config: ISegmentConfigShape); }