import { IApplication } from "./types"; import { XmlObject } from "./XmlObject"; /** Metadata about the application which saved the DAWPROJECT file. */ export declare class Application extends XmlObject implements IApplication { /** Name of the application. */ name: string; /** Version number of the application. */ version: string; constructor(name?: string, version?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }