import type { PropsWithChildren } from "react"; export declare enum NavBarName { Learning = "learning", ClinicalCare = "clinicalCare", Teaching = "teaching", Unset = "unset" } export type NavBarSubThemeProps = PropsWithChildren<{ subTheme: NavBarName; "data-e2e-test-id"?: string; }>;