/** * Defines the behavior for the user's session when the Response is delivered. */ export declare enum SessionBehavior { /** * Keep the session open. */ OPEN = 0, /** * End the session. */ END = 1, /** * Keep the session open for approximately 30 seconds but with the * microphone disabled. * * This only applies to devices with a screen. See * https://developer.amazon.com/en-US/docs/alexa/custom-skills/manage-skill-session-and-session-attributes.html#screen-session */ IDLE = 2 } //# sourceMappingURL=SessionBehavior.d.ts.map