import { default as React } from 'react'; interface SubMenuProps { /** Nested submenu content */ children: React.ReactNode; /** Primary text to display in the menu item */ name?: string; /** Secondary text for the menu item */ description?: string; /** Leading icon */ icon?: React.ReactNode; /** Icon used for the back button inside the drawer */ backIcon?: React.ReactNode; /** Trailing element shown in the menu item (defaults to chevron) */ suffix?: React.ReactNode; /** Extra classes for the menu item button */ className?: string; /** Extra classes for the drawer */ contentClassName?: string; /** Title alignment in the drawer header */ titleAlign?: "left" | "center" | "right"; } export declare const SubMenu: React.FC; export {};