import type React from "react"; import type { NulogyAppName } from "../../../types/NulogyApp"; export type AppSwitcherConfig = false | { apps: Partial>; }; type AppSwitcherProps = { config: AppSwitcherConfig; }; export declare function NulogyAppSwitcher({ config }: AppSwitcherProps): import("react/jsx-runtime").JSX.Element; export {};