import { type BlockVersion } from '../../model/BlockVersion'; import { type VNode } from '../../model/VNode'; import { type StepProps } from './StepsBlockContent'; import { type StyleType } from './StepsBlockStyleMaps'; export declare const STEP_BREAKPOINT = 4; interface RenderStepProps { styleMap: StyleType; version?: BlockVersion; } export declare const renderStep: (props: RenderStepProps) => (step: StepProps, i: number, arr: StepProps[]) => VNode; export {};