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