export default expandCombinedTracks; /** @import * as t from '../types' */ /** * Go through a list of tracks and expand combined * tracks. * * @param {Array} trackList - A list of tracks some of which might be combined * @returns {Array} A list of tracks without combined */ declare function expandCombinedTracks(trackList: Array): Array; import type * as t from '../types';