export declare const ConfirmationState: { readonly CONFIRMED: "Confirmed"; readonly DENIED: "Denied"; readonly NONE: "None"; }; export type ConfirmationState = (typeof ConfirmationState)[keyof typeof ConfirmationState]; export declare const Shape: { readonly COMPOSITE: "Composite"; readonly LIST: "List"; readonly SCALAR: "Scalar"; }; export type Shape = (typeof Shape)[keyof typeof Shape]; 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"; }; export type IntentState = (typeof IntentState)[keyof typeof IntentState]; export declare const InterpretationSource: { readonly BEDROCK: "Bedrock"; readonly LEX: "Lex"; }; export type InterpretationSource = (typeof InterpretationSource)[keyof typeof InterpretationSource]; export declare const SentimentType: { readonly MIXED: "MIXED"; readonly NEGATIVE: "NEGATIVE"; readonly NEUTRAL: "NEUTRAL"; readonly POSITIVE: "POSITIVE"; }; export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType]; export declare const MessageContentType: { readonly CUSTOM_PAYLOAD: "CustomPayload"; readonly IMAGE_RESPONSE_CARD: "ImageResponseCard"; readonly PLAIN_TEXT: "PlainText"; readonly SSML: "SSML"; }; export type MessageContentType = (typeof MessageContentType)[keyof typeof MessageContentType]; export declare const StyleType: { readonly DEFAULT: "Default"; readonly SPELL_BY_LETTER: "SpellByLetter"; readonly SPELL_BY_WORD: "SpellByWord"; }; export type StyleType = (typeof StyleType)[keyof typeof StyleType]; 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"; }; export type DialogActionType = (typeof DialogActionType)[keyof typeof DialogActionType]; export declare const ConversationMode: { readonly AUDIO: "AUDIO"; readonly TEXT: "TEXT"; }; export type ConversationMode = (typeof ConversationMode)[keyof typeof ConversationMode]; export declare const InputMode: { readonly DTMF: "DTMF"; readonly SPEECH: "Speech"; readonly TEXT: "Text"; }; export type InputMode = (typeof InputMode)[keyof typeof InputMode]; export declare const PlaybackInterruptionReason: { readonly DTMF_START_DETECTED: "DTMF_START_DETECTED"; readonly TEXT_DETECTED: "TEXT_DETECTED"; readonly VOICE_START_DETECTED: "VOICE_START_DETECTED"; }; export type PlaybackInterruptionReason = (typeof PlaybackInterruptionReason)[keyof typeof PlaybackInterruptionReason];