export interface StepProps { title: string; number: number; status: 'actual' | 'completed' | 'uncompleted'; alignment: 'start' | 'center' | 'end'; onClick?: () => void; [props: string]: any; } export declare const Step: ({ title, number, alignment, status, onClick, ...props }: StepProps) => import("@emotion/react/jsx-runtime").JSX.Element;