export declare const FulfillmentState: {
  readonly FAILED: "Failed";
  readonly FULFILLED: "Fulfilled";
  readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
};
export type FulfillmentState =
  (typeof FulfillmentState)[keyof typeof FulfillmentState];
export declare const MessageFormatType: {
  readonly COMPOSITE: "Composite";
  readonly CUSTOM_PAYLOAD: "CustomPayload";
  readonly PLAIN_TEXT: "PlainText";
  readonly SSML: "SSML";
};
export type MessageFormatType =
  (typeof MessageFormatType)[keyof typeof MessageFormatType];
export declare const DialogActionType: {
  readonly CLOSE: "Close";
  readonly CONFIRM_INTENT: "ConfirmIntent";
  readonly DELEGATE: "Delegate";
  readonly ELICIT_INTENT: "ElicitIntent";
  readonly ELICIT_SLOT: "ElicitSlot";
};
export type DialogActionType =
  (typeof DialogActionType)[keyof typeof DialogActionType];
export declare const ConfirmationStatus: {
  readonly CONFIRMED: "Confirmed";
  readonly DENIED: "Denied";
  readonly NONE: "None";
};
export type ConfirmationStatus =
  (typeof ConfirmationStatus)[keyof typeof ConfirmationStatus];
export declare const DialogState: {
  readonly CONFIRM_INTENT: "ConfirmIntent";
  readonly ELICIT_INTENT: "ElicitIntent";
  readonly ELICIT_SLOT: "ElicitSlot";
  readonly FAILED: "Failed";
  readonly FULFILLED: "Fulfilled";
  readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
};
export type DialogState = (typeof DialogState)[keyof typeof DialogState];
export declare const ContentType: {
  readonly GENERIC: "application/vnd.amazonaws.card.generic";
};
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
