import { v1 } from 'ask-smapi-model'; import Intent = v1.skill.interactionModel.Intent; /** * Abstract base class for the "Control Intents" */ export declare abstract class BaseControlIntent { /** * Name of the intent as it will appear in the interaction model. * * Default: the class name. */ name: string; /** * Generate a complete Intent object. */ abstract generateIntent(): Intent; } //# sourceMappingURL=BaseControlIntent.d.ts.map