import SandwichFile from "../sandwich/sandwichFile"; import { ReadStyle } from "../file"; import { IFileAbstraction } from "../fileAbstraction"; import { Properties } from "../properties"; /** * This class extends {@link SandwichFile} to provide tagging and properties support for * MPEG-1, MPEG-2, and MPEG-2.5 non-containerized audio files. */ export default class MpegAudioFile extends SandwichFile { private static readonly DEFAULT_TAG_LOCATION_MAPPING; private _firstHeader; constructor(file: IFileAbstraction | string, propertiesStyle: ReadStyle); protected readProperties(readStyle: ReadStyle): Properties; }