/** * APL rendering mode */ export declare enum APLMode { /** * Controls add APL directives directly to the ResponseBuilder as they are rendering * their prompts. */ DIRECT = "Direct", /** * The top-level ControlManager.renderAPL produces the APL for each turn. * - typically this will be a document that includes various control.renderAPLComponent calls. * * Controls do not render APL directives during renderAct. */ COMPONENT = "Component" } //# sourceMappingURL=AplMode.d.ts.map