import { HTMLAttributes, ReactNode } from 'react';
export interface INavSectionProps extends HTMLAttributes<HTMLDivElement> {
    children: ReactNode;
}
declare const NavSection: ({ children, ...props }: INavSectionProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export default NavSection;
