import type { Navigation } from "../AppProvider";
interface DashboardSidebarSubNavigationProps {
    subNavigation: Navigation;
    basePath?: string;
    depth?: number;
    onLinkClick: () => void;
    isMini?: boolean;
    isFullyExpanded?: boolean;
    hasDrawerTransitions?: boolean;
    selectedItemId: string;
}
/**
 * @ignore - internal component.
 */
declare function DashboardSidebarSubNavigation({ subNavigation, basePath, depth, onLinkClick, isMini, isFullyExpanded, hasDrawerTransitions, selectedItemId }: DashboardSidebarSubNavigationProps): import("react/jsx-runtime").JSX.Element;
export { DashboardSidebarSubNavigation };
