/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface MenuVariant { /** * @default "md" */ size: "xs" | "sm" | "md" | "lg" } type MenuVariantMap = { [key in keyof MenuVariant]: Array } export type MenuVariantProps = { [key in keyof MenuVariant]?: ConditionalValue | undefined } export interface MenuRecipe { __type: MenuVariantProps (props?: MenuVariantProps): Pretty> raw: (props?: MenuVariantProps) => MenuVariantProps variantMap: MenuVariantMap variantKeys: Array splitVariantProps(props: Props): [MenuVariantProps, Pretty>] getVariantProps: (props?: MenuVariantProps) => MenuVariantProps } export declare const menu: MenuRecipe