import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "li"; export interface InnerMenuSectionProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * The section name. */ title?: string; } export declare function InnerMenuSection({ as, children, forwardedRef, id, title, ...rest }: InnerMenuSectionProps): JSX.Element; export declare namespace InnerMenuSection { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/menu--default-story) */ export declare const MenuSection: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type MenuSectionProps = ComponentProps; export {};