import React from "react"; import { WithTheme } from "../types"; export declare type SectionProps = WithTheme<{ children: React.ReactNode; testId?: string; extendClass?: string; }>; export declare function Section({ children, testId, extendClass, ...props }: SectionProps): JSX.Element; export declare function FooterSection({ children, testId, extendClass, ...props }: SectionProps): JSX.Element; export declare function HeaderSection({ children, testId, extendClass, ...props }: SectionProps): JSX.Element;