import { IMetaData } from "./types"; import { XmlObject } from "./XmlObject"; /** Metadata root element of the DAWPROJECT format. This is stored in the file metadata.xml file inside the container. */ export declare class MetaData extends XmlObject implements IMetaData { /** Title of the song/project. */ title?: string; /** Recording Artist. */ artist?: string; /** Album. */ album?: string; /** Original Artist. */ originalArtist?: string; /** Composer. */ composer?: string; /** Songwriter. */ songwriter?: string; /** Producer. */ producer?: string; /** Arranger. */ arranger?: string; /** Year this project/song was recorded. */ year?: string; /** Genre/style */ genre?: string; /** Copyright notice. */ copyright?: string; /** URL to website related to this project. */ website?: string; /** General comment or description. */ comment?: string; constructor(title?: string, artist?: string, album?: string, originalArtist?: string, composer?: string, songwriter?: string, producer?: string, arranger?: string, year?: string, genre?: string, copyright?: string, website?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }