import { type ComponentProps, type ComponentPropsWithRef, type FC, type PropsWithChildren } from 'react'; type AbstractProps = PropsWithChildren<{ as?: 'article' | 'aside' | 'nav' | 'section'; baseLevel?: number; }>; type PropsWithAs = AbstractProps & Omit, keyof AbstractProps>; type Props = Omit, 'as'>; declare const SectioningContent: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const Section: FC; export declare const Article: FC; export declare const Aside: FC; export declare const Nav: FC; export declare const SectioningFragment: FC>; export {};