import { v1 } from 'ask-smapi-model'; import SlotType = v1.skill.interactionModel.SlotType; /** * Names of the built-in slot types used by ControlIntents */ export declare enum SharedSlotType { FEEDBACK = "feedback", FILTERED_FEEDBACK = "filteredFeedback", HEAD = "head", TAIL = "tail", ACTION = "action", TARGET = "target", CONJUNCTION = "conjunction", PREPOSITION = "preposition" } /** * Localized information Names of the built-in slot types used by ControlIntents */ export interface ModelData { slotTypes: SlotType[]; intentValues: IntentUtterances[]; } export interface SlotValue { synonyms: string[]; id: string; } export interface IntentUtterances { name: string; samples: string[]; } export declare type ModelDataMap = { [locale: string]: ModelData; }; //# sourceMappingURL=ModelTypes.d.ts.map