import React from 'react'; export interface StepsLeftProps { /** Array of step names */ steps: Array<{ title: string; subtitle: string; status: 'pending' | 'warn' | 'error' | 'complete'; onClick?: (event: React.MouseEvent) => void; }>; /** Layout of the component */ verticalLayout?: boolean; } declare const StepsLeft: ({ steps, verticalLayout, ...other }: StepsLeftProps) => JSX.Element; export default StepsLeft;