import type { NodeType } from './constants'; import type { StepData } from './flow'; import type { BaseStep } from './utils'; export { StepData } from './flow'; export interface Step extends BaseStep { type: NodeType.COMPONENT; } //# sourceMappingURL=component.d.ts.map