/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface EmbeddedSidePaneSlotRecipeVariant { } type EmbeddedSidePaneSlotRecipeVariantMap = { [key in keyof EmbeddedSidePaneSlotRecipeVariant]: Array } type EmbeddedSidePaneSlotRecipeSlot = "root" | "container" export type EmbeddedSidePaneSlotRecipeVariantProps = { [key in keyof EmbeddedSidePaneSlotRecipeVariant]?: ConditionalValue | undefined } export interface EmbeddedSidePaneSlotRecipeRecipe { __slot: EmbeddedSidePaneSlotRecipeSlot __type: EmbeddedSidePaneSlotRecipeVariantProps (props?: EmbeddedSidePaneSlotRecipeVariantProps): Pretty> raw: (props?: EmbeddedSidePaneSlotRecipeVariantProps) => EmbeddedSidePaneSlotRecipeVariantProps variantMap: EmbeddedSidePaneSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [EmbeddedSidePaneSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: EmbeddedSidePaneSlotRecipeVariantProps) => EmbeddedSidePaneSlotRecipeVariantProps } /** * Slot class created for the MFUI EmbeddedSidePane component. */ export declare const embeddedSidePaneSlotRecipe: EmbeddedSidePaneSlotRecipeRecipe