/// import { SxProps } from '@mui/material'; import { Variant } from '@mui/material/styles/createTypography'; import { DefaultTheme as Theme } from '@mui/styles'; export interface SectionProps { children?: any; className?: string; id?: string; classes?: { root?: string; title?: string; titleWrap?: string; }; sx?: { root?: SxProps; title?: SxProps; }; title?: string | JSX.Element; titleVariant?: Variant; withSlider?: boolean; titleLineHeight?: string; titleColor?: string; titleAlign?: 'left' | 'right' | 'inherit' | 'center' | 'justify' | undefined; topRight?: JSX.Element; } declare const Section: ({ children, classes, className, id, sx, titleLineHeight, titleColor, titleVariant, titleAlign, title, topRight, withSlider, }: SectionProps) => JSX.Element; export default Section;