import m, { CVnode, ClassComponent } from "mithril"; import stream from "mithril/stream"; import { IConfig } from "../interface/config"; interface ITimeScroller { readonly value: stream; readonly min: number; readonly max: number; readonly step?: number; readonly config?: Partial; } export declare class TimeScroller implements ClassComponent { private static formatValue; private static applyStep; view({ attrs: { value, step, min, max, config } }: CVnode): m.Vnode; } export {};