import * as cdk from '@aws-cdk/core';
import { LexSlotTypeAttributes } from '../lex-data-types';
export default class LexSlotType extends cdk.Construct {
    scope: cdk.Stack;
    id: string;
    props: LexSlotTypeAttributes;
    constructor(scope: cdk.Stack, id: string, serviceToken: string, props: LexSlotTypeAttributes);
    slotTypeName(): string;
}
