import { FC, LiHTMLAttributes } from 'react'; /** * MenuSeparator is used to visually separate menu items. * Provides consistent styling and structure for displaying dividers within Menu components. * * ```typescript * import { Menu, MenuItem, MenuItemLabel, MenuSeparator, Orientation } from '@syncfusion/react-navigations'; * export default function App() { * return ( * <> * * * File * * * * Edit * * * * ); * } * ``` */ export interface MenuSeparatorProps { /** * Specifies an optional CSS class to apply to the separator. * * @default - */ className?: string; } type IMenuSeparatorProps = MenuSeparatorProps & LiHTMLAttributes; export declare const MenuSeparator: FC; export {};