import { type FC } from "react"; import type VibeComponentProps from "../../types/VibeComponentProps"; import { type StepsColor } from "./Steps.types"; export interface StepsNumbersHeaderProps extends VibeComponentProps { /** * The index of the currently active step. */ activeStepIndex: number; /** * The total number of steps. */ stepsCount: number; /** * The color theme of the steps numbers header. */ color?: StepsColor; } export declare const StepsNumbersHeader: FC;