/// <reference types="react" />
export interface ProgressNavigationProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    steps: {
        id: string | number;
        title: string;
        text: string;
    }[];
    orientation?: 'horizontal' | 'vertical';
    activeColor?: string;
    onStepClick?: (index: number) => void;
}
