import { default as React } from 'react'; import { ActionListItemProps } from '../ActionList/ActionList.Item'; import { SideNavActionListItemLabel } from './SideNavActionListItemLabel'; import { SideNavActionListItemFlyout } from './SideNavActionListItemFlyout'; import { SideNavActionListItemExpandable } from './SideNavActionListItemExpandable'; export interface SideNavActionListItemProps extends ActionListItemProps { /** * The content of the SideNav.ActionList.Item */ children: React.ReactNode; /** * Boolean that states if the action is selected */ selected?: boolean; } declare const Root: React.ForwardRefExoticComponent>; export declare const SideNavActionListItem: typeof Root & { displayName: string; Label: typeof SideNavActionListItemLabel; Flyout: typeof SideNavActionListItemFlyout; Expandable: typeof SideNavActionListItemExpandable; }; export {};