import type { Nullable } from '@voiceflow/common'; import type { Variable } from './common'; export interface SlotType { value?: string; } export interface Slot { key: string; name: string; type: SlotType; color?: string; inputs: string[]; } export interface SlotMapping { slot: Nullable; variable: Nullable; } //# sourceMappingURL=slot.d.ts.map