/** * @public * @enum */ export declare const ConfirmationState: { readonly CONFIRMED: "Confirmed"; readonly DENIED: "Denied"; readonly NONE: "None"; }; /** * @public */ export type ConfirmationState = (typeof ConfirmationState)[keyof typeof ConfirmationState]; /** * @public * @enum */ export declare const Shape: { readonly COMPOSITE: "Composite"; readonly LIST: "List"; readonly SCALAR: "Scalar"; }; /** * @public */ export type Shape = (typeof Shape)[keyof typeof Shape]; /** * @public * @enum */ export declare const IntentState: { readonly FAILED: "Failed"; readonly FULFILLED: "Fulfilled"; readonly FULFILLMENT_IN_PROGRESS: "FulfillmentInProgress"; readonly IN_PROGRESS: "InProgress"; readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment"; readonly WAITING: "Waiting"; }; /** * @public */ export type IntentState = (typeof IntentState)[keyof typeof IntentState]; /** * @public * @enum */ export declare const InterpretationSource: { readonly BEDROCK: "Bedrock"; readonly LEX: "Lex"; }; /** * @public */ export type InterpretationSource = (typeof InterpretationSource)[keyof typeof InterpretationSource]; /** * @public * @enum */ export declare const SentimentType: { readonly MIXED: "MIXED"; readonly NEGATIVE: "NEGATIVE"; readonly NEUTRAL: "NEUTRAL"; readonly POSITIVE: "POSITIVE"; }; /** * @public */ export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType]; /** * @public * @enum */ export declare const MessageContentType: { readonly CUSTOM_PAYLOAD: "CustomPayload"; readonly IMAGE_RESPONSE_CARD: "ImageResponseCard"; readonly PLAIN_TEXT: "PlainText"; readonly SSML: "SSML"; }; /** * @public */ export type MessageContentType = (typeof MessageContentType)[keyof typeof MessageContentType]; /** * @public * @enum */ export declare const StyleType: { readonly DEFAULT: "Default"; readonly SPELL_BY_LETTER: "SpellByLetter"; readonly SPELL_BY_WORD: "SpellByWord"; }; /** * @public */ export type StyleType = (typeof StyleType)[keyof typeof StyleType]; /** * @public * @enum */ export declare const DialogActionType: { readonly CLOSE: "Close"; readonly CONFIRM_INTENT: "ConfirmIntent"; readonly DELEGATE: "Delegate"; readonly ELICIT_INTENT: "ElicitIntent"; readonly ELICIT_SLOT: "ElicitSlot"; readonly NONE: "None"; }; /** * @public */ export type DialogActionType = (typeof DialogActionType)[keyof typeof DialogActionType]; /** * @public * @enum */ export declare const ConversationMode: { readonly AUDIO: "AUDIO"; readonly TEXT: "TEXT"; }; /** * @public */ export type ConversationMode = (typeof ConversationMode)[keyof typeof ConversationMode]; /** * @public * @enum */ export declare const InputMode: { readonly DTMF: "DTMF"; readonly SPEECH: "Speech"; readonly TEXT: "Text"; }; /** * @public */ export type InputMode = (typeof InputMode)[keyof typeof InputMode]; /** * @public * @enum */ export declare const PlaybackInterruptionReason: { readonly DTMF_START_DETECTED: "DTMF_START_DETECTED"; readonly TEXT_DETECTED: "TEXT_DETECTED"; readonly VOICE_START_DETECTED: "VOICE_START_DETECTED"; }; /** * @public */ export type PlaybackInterruptionReason = (typeof PlaybackInterruptionReason)[keyof typeof PlaybackInterruptionReason];