import { ReactNode } from 'react'; import { SxProps } from '@mui/material'; import { Theme } from '../../../theme/muiTheme'; export interface SectionProps { label?: string; title?: string | JSX.Element; description?: string | JSX.Element; backgroundImage?: string; children?: ReactNode; sx?: { container?: SxProps; section?: SxProps; title?: SxProps; children?: SxProps; }; } declare const Section: ({ label, title, description, backgroundImage, children, sx, }: SectionProps) => JSX.Element; export { Section };