/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface NavigationPanelVariant { /** * @default "md" */ size: "md" | "lg" /** * @default "left" */ panelPosition: "left" | "right" } type NavigationPanelVariantMap = { [key in keyof NavigationPanelVariant]: Array } type NavigationPanelSlot = "root" | "body" | "logo" | "label" | "dropdown" export type NavigationPanelVariantProps = { [key in keyof NavigationPanelVariant]?: ConditionalValue | undefined } export interface NavigationPanelRecipe { __slot: NavigationPanelSlot __type: NavigationPanelVariantProps (props?: NavigationPanelVariantProps): Pretty> raw: (props?: NavigationPanelVariantProps) => NavigationPanelVariantProps variantMap: NavigationPanelVariantMap variantKeys: Array splitVariantProps(props: Props): [NavigationPanelVariantProps, Pretty>] getVariantProps: (props?: NavigationPanelVariantProps) => NavigationPanelVariantProps } /** * LikeC4 Navigation panel */ export declare const navigationPanel: NavigationPanelRecipe