import { AllowedTextElementsProps, ColorProps, FontWeightProps, ResponsiveColorProps, ResponsiveFontWeightProps, ResponsiveTextAlignProps, ResponsiveTruncateProps, TextAlignProps, TruncateProps } from '../../utils/types/types'; /************************* *Props *************************/ interface SectionHeadingProps { title?: string | React.ReactNode; titleAlign?: ResponsiveTextAlignProps | TextAlignProps; titleFontWeight?: ResponsiveFontWeightProps | FontWeightProps; subTitle?: string | React.ReactNode; subTitleAlign?: ResponsiveTextAlignProps | TextAlignProps; titleTAs?: AllowedTextElementsProps; subTitleColor?: ResponsiveColorProps | ColorProps; titleButton?: React.ReactNode; children_width?: "max-content" | "min-content" | "fit-content" | "auto"; gap?: string; isInfoButton?: boolean; infoButtonText?: string; infoButtonUrl?: string; children?: React.ReactNode; titleTruncate?: ResponsiveTruncateProps | TruncateProps; subTitleTruncate?: ResponsiveTruncateProps | TruncateProps; } declare const SectionHeading: ({ title, titleTAs, titleFontWeight, subTitle, subTitleAlign, titleAlign, subTitleColor, titleButton, children, titleTruncate, subTitleTruncate }: SectionHeadingProps) => import("react/jsx-runtime").JSX.Element; export default SectionHeading;