import { BoxProps } from '@mui/material'; import { ReactNode } from 'react'; export type SectionBoxProps = BoxProps & { size?: "big" | "small"; header: ReactNode; footer?: ReactNode; }; export declare const SectionBox: (props: SectionBoxProps) => React.JSX.Element;