import React from "react";
export interface SectionTitleProps {
    children?: JSX.Element | JSX.Element[] | string | number;
    title?: string;
    description?: string;
    subtitle?: string;
    align?: any;
}
declare const SectionTitleComponent: React.FC<SectionTitleProps>;
export default SectionTitleComponent;
