import { LexSlot } from '..';
import { LexIntentAttributes, LexSlotAttributes } from '../lex-data-types';
export default class {
    props: LexIntentAttributes;
    slots: LexSlot[];
    constructor(props: LexIntentAttributes);
    addSlot(props: LexSlotAttributes): LexSlot;
    definition(): any;
}
