import { LexIntent, LexSlotType } from '..';
import { LexBotLocaleAttributes, LexSlotTypeAttributes, LexIntentAttributes } from '../lex-data-types';
export default class {
    props: LexBotLocaleAttributes;
    slotTypes: LexSlotType[];
    intents: LexIntent[];
    constructor(props: LexBotLocaleAttributes);
    addSlotType(slotTypeProps: LexSlotTypeAttributes): LexSlotType;
    addIntent(intentProps: LexIntentAttributes): LexIntent;
    definition(): any;
}
