import { default as React } from 'react'; import { MenuActionPropsWithToggle } from '../Menu'; type MenuToggleRowProps = MenuActionPropsWithToggle & { className: string; close?: () => void; /** Optional prop to add a test id to the MenuToggleRow for QA testing */ qaTestId?: string; }; declare const MenuToggleRow: (props: MenuToggleRowProps) => React.JSX.Element; export default MenuToggleRow;