import type { HorizontalStep } from './types'; type Props = HorizontalStep & { /** ステップ数 */ stepNumber: number; /** 現在地かどうか */ current: boolean; /** 前のステップが完了しているかどうか */ isPrevStepCompleted: boolean; }; export declare const HorizontalStepItem: import("react").NamedExoticComponent; export {};