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