declare const v1Handlers: {
    v1LexBotHandler: (event: any, context: any) => Promise<any>;
    v1LexIntentHandler: (event: any, context: any) => Promise<any>;
    v1LexSlotTypeHandler: (event: any, context: any) => Promise<any>;
};
import LexBot from './bot/lex-bot';
import LexSlotType from './slot-type/lex-slot-type';
import LexIntent from './intent/lex-intent';
import { LexIntentAttributes, LexMessageResponseCard, LexIntentCDK, LexVoice, LexMessage, LexPrompt, LexBotAttributes, LexSlotTypeAttributes, ValueSelectionStrategy, MessageContentType, FulfillmentActivityType, SlotConstraint, FulfillmentActivity, SlotTypeConfiguration, LexSlotTypeEnumerationValue, LexSlot, ObfuscationSetting, KendraConfig, DialogCodeHook } from './lex-data-types';
export { LexIntentAttributes, LexMessageResponseCard, LexIntentCDK, LexVoice, LexMessage, LexPrompt, LexBotAttributes, LexSlotTypeAttributes, ValueSelectionStrategy, MessageContentType, FulfillmentActivityType, SlotConstraint, FulfillmentActivity, SlotTypeConfiguration, LexSlotTypeEnumerationValue, LexSlot, ObfuscationSetting, KendraConfig, DialogCodeHook, LexBot, LexSlotType, LexIntent, v1Handlers as handlers };
