import { Construct } from 'constructs';
import { CfnResource, Reference } from 'aws-cdk-lib';
import { LexBotAlias, LexBotVersion } from '..';
import { LexBotAliasAttributes, LexBotAttributes } from '../lex-data-types';
export default class extends Construct {
    serviceToken: string | Reference;
    scope: Construct;
    resource: CfnResource;
    constructor(scope: Construct, id: string, serviceToken: string | Reference, props: LexBotAttributes);
    automaticVersion(): LexBotVersion;
    addAlias(aliasProps: LexBotAliasAttributes): LexBotAlias;
    lastUpdatedDateTime(): Reference;
    botId(): Reference;
    botLocaleIds(): Reference;
}
