import { DividerProps } from '@fluentui/react-components';
import React from 'react';
import { FluentIconType } from '../types/common';
export declare const ProgressBarEXClassNames: {
    readonly hasLabels: "with-label";
    readonly current: "current-step";
    readonly completed: "completed-step";
};
interface IProps extends DividerProps {
    steps: number;
    step: number;
    stepLabel?: string;
    css?: string[];
    /** optional, send an icon instead of the step number */
    stepIcons?: FluentIconType[];
    onStepClick?: (step: number) => void;
}
export declare const ProgressBarEX: (props: IProps & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;
export {};
