import { HTMLAttributes, ReactNode } from 'react';
export interface MenuSectionProps extends Omit, 'children'> {
label: string;
/**
* 섹션 라벨 우측에 구분선을 표시할지 여부
* @default false
*/
divider?: boolean;
/** 섹션에 포함할 MenuItem 또는 MenuGroup */
children: ReactNode;
}
export declare const MenuSection: ({ className, label, divider, children, ...props }: MenuSectionProps) => import("@emotion/react/jsx-runtime").JSX.Element;