import { Readable } from 'stream'; import type { ShallowTrackMeta, TrackPath, TrackStats } from '../../types/Track.h'; declare const getMetaAsync: (stats: TrackStats) => Promise; declare const getStats: (fullPath: TrackPath) => { size: number; tagsSize: number; directory: string; duration: number; format: string; fullPath: string; name: string; bitrate: number; stringified: string; }; declare const createSoundStream: ({ fullPath, bitrate, tagsSize }: TrackStats) => Readable; export { createSoundStream, getMetaAsync, getStats, };