import React from 'react'; interface MenuSeparatorProps { title: string; iconSize?: number; } declare const MenuSeparator: ({ title, iconSize }: MenuSeparatorProps) => React.JSX.Element; export default MenuSeparator;