/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface NavigationPanelActionIconVariant { /** * @default "default" */ variant: "default" | "filled" /** * @default "default" */ type: "default" | "warning" } type NavigationPanelActionIconVariantMap = { [key in keyof NavigationPanelActionIconVariant]: Array } export type NavigationPanelActionIconVariantProps = { [key in keyof NavigationPanelActionIconVariant]?: NavigationPanelActionIconVariant[key] | undefined } export interface NavigationPanelActionIconRecipe { __type: NavigationPanelActionIconVariantProps (props?: NavigationPanelActionIconVariantProps): string raw: (props?: NavigationPanelActionIconVariantProps) => NavigationPanelActionIconVariantProps variantMap: NavigationPanelActionIconVariantMap variantKeys: Array splitVariantProps(props: Props): [NavigationPanelActionIconVariantProps, Pretty>] getVariantProps: (props?: NavigationPanelActionIconVariantProps) => NavigationPanelActionIconVariantProps } /** * ActionIcon for navigation panel */ export declare const navigationPanelActionIcon: NavigationPanelActionIconRecipe