import { ListItemButtonProps } from '@mui/material/ListItemButton';
import { IDrawerNavItem } from '../../type';
export interface IDrawerCondensedListItem {
    item: IDrawerNavItem;
    ListItemButtonProps?: ListItemButtonProps;
}
export declare const DrawerCondensedListItem: (props: IDrawerCondensedListItem) => import("react/jsx-runtime").JSX.Element;
