import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledHtmlAttributes } from "../../shared"; export interface InnerSectionProps extends InternalProps, StyledHtmlAttributes { /** * React children. */ children: ReactNode; } export declare function InnerSection(props: InnerSectionProps): JSX.Element; export declare const Section: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare type SectionProps = ComponentProps;