import { FC, ReactNode } from 'react';
import { PalletInterface } from '../stepper';
export interface StepInterface {
    isKeepIndicatorOnComplete?: boolean;
    indicator: ReactNode;
    label: string;
    navigateToStepHandler: (index: number) => void;
    index: number;
    isActive: boolean;
    isComplete: boolean;
    isWarning?: boolean;
    isError?: boolean;
    isStepConnector: boolean;
    isRightToLeftLanguage: boolean;
    pallet?: PalletInterface;
}
export declare const Step: FC<StepInterface>;
