import { HTMLAttributes, PropsWithChildren } from 'react'; import { CommonProps } from '../common'; type SectionProps = PropsWithChildren & Pick, 'role' | 'aria-labelledby'>; /** * * Neptune Web: https://transferwise.github.io/neptune-web/components/content/Section * */ declare const Section: ({ as: Element, children, className, withHorizontalPadding, role, ...restProps }: SectionProps) => import("react").JSX.Element; export default Section; //# sourceMappingURL=Section.d.ts.map