import React from "react";
export interface SectionProps {
    children?: JSX.Element | JSX.Element[] | string | number | Element[];
    noContainer?: boolean;
    noPadding?: boolean;
    topIndent?: boolean;
    sx?: object;
    id?: string;
}
interface StyledSectionProps extends Pick<SectionProps, "noPadding" | "topIndent"> {
}
export declare const SectionBox: import("styled-components").StyledComponent<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material/Box").BoxTypeMap<{}, "div">>, import("@mui/material/styles").Theme, import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & StyledSectionProps, never>;
declare const SectionComponent: React.FC<SectionProps>;
export default SectionComponent;
