import React, { ReactNode } from 'react';
interface StepLinedProps {
    children?: ReactNode;
    funcss?: string;
}
declare const StepLine: React.FC<StepLinedProps>;
export default StepLine;
