import { PalletInterface, StepInterface } from '../stepper';
import { FC } from 'react';
export interface StepperHeadInterface {
    steps: StepInterface[];
    navigateToStepHandler: (index: number) => void;
    isVertical: boolean;
    isInline: boolean;
    isSequenceStepper: boolean;
    isStepConnector: boolean;
    isRightToLeftLanguage: boolean;
    currentTabIndex: number;
    pallet?: PalletInterface;
}
export declare const StepperHead: FC<StepperHeadInterface>;
