import { PalletInterface, StepInterface } from '../stepper';
import { FC, ReactNode } 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;
    disableStepHeaderClick?: boolean;
    customConnector?: ReactNode;
}
export declare const StepperHead: FC<StepperHeadInterface>;
