import type { AnyRecord } from '@voiceflow/common'; import type { Variable } from './common.js'; export interface CommandMapping { slot: string; variable: Variable; } /** * @deprecated use BaseCommand instead */ export type Command = { type: T; } & D; export interface BaseCommand { type: string; } //# sourceMappingURL=command.d.ts.map