import { DurationType, TrackBase } from "../types"; export declare class Track implements TrackBase { readonly platform: string; readonly id: string; readonly title: string; readonly description: string; readonly url: string; readonly duration: DurationType; constructor(platform: string, id: string, title: string, description: string, url: string, durationData: { data: number; isMs?: boolean; }); _durationFormater(data: number, isMs?: boolean): DurationType; }