///
import type { TrackI, TrackStats } from '../types/Track.h';
export declare class Track implements TrackI {
isPlaying: boolean;
playCount: number;
readonly fsStats: TrackStats;
constructor(fullPath: string);
getMetaAsync(): Promise;
getSound(): import("stream").Readable;
getMeta(): never;
}