import { XMLBuilder } from 'xmlbuilder2/lib/interfaces'; import { Verb } from './Verb'; /** * @export * @class NestableVerb * @extends {Verb} * Base class for all BXML verbs that can contain other verbs */ export declare class NestableVerb extends Verb { name: string; content: string; attributes: object; nestedVerbs?: Verb[]; /** * Creates an instance of NestableVerb * @param name [string] Name of the XML element * @param content [string] Content of the XML element * @param attributes [object] Attributes of the XML element * @param nestedVerbs [Verb | Array] Nested Verb or Array of Nested Verbs */ constructor(name: string, content?: string, attributes?: object, nestedVerbs?: Verb | Verb[]); /** * Generate an XML element for the verb */ generateXml(): XMLBuilder; }