import type { ReactNode } from 'react'; import React from 'react'; interface Props { children?: ReactNode; caption?: string; noPadding?: boolean; paddingBottom?: '3'; } export declare function Section({ caption, children, noPadding, paddingBottom }: Props): React.JSX.Element; export {};