import type { AnyRecord, EmptyObject, Nullable } from '@voiceflow/common'; import type { NodeType } from './constants.js'; import type { BaseStep } from './utils/index.js'; export interface StepData { domainID: Nullable; } export interface Step extends BaseStep { type: NodeType.GOTO_DOMAIN; } //# sourceMappingURL=goToDomain.d.ts.map