/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface PanelSlotRecipeVariant { } type PanelSlotRecipeVariantMap = { [key in keyof PanelSlotRecipeVariant]: Array } type PanelSlotRecipeSlot = "root" export type PanelSlotRecipeVariantProps = { [key in keyof PanelSlotRecipeVariant]?: ConditionalValue | undefined } export interface PanelSlotRecipeRecipe { __slot: PanelSlotRecipeSlot __type: PanelSlotRecipeVariantProps (props?: PanelSlotRecipeVariantProps): Pretty> raw: (props?: PanelSlotRecipeVariantProps) => PanelSlotRecipeVariantProps variantMap: PanelSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [PanelSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: PanelSlotRecipeVariantProps) => PanelSlotRecipeVariantProps } /** * Slot class created for the MFUI Panel component. */ export declare const panelSlotRecipe: PanelSlotRecipeRecipe