/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface PopoverVariant { } type PopoverVariantMap = { [key in keyof PopoverVariant]: Array } export type PopoverVariantProps = { [key in keyof PopoverVariant]?: ConditionalValue | undefined } export interface PopoverRecipe { __type: PopoverVariantProps (props?: PopoverVariantProps): Pretty> raw: (props?: PopoverVariantProps) => PopoverVariantProps variantMap: PopoverVariantMap variantKeys: Array splitVariantProps(props: Props): [PopoverVariantProps, Pretty>] getVariantProps: (props?: PopoverVariantProps) => PopoverVariantProps } export declare const popover: PopoverRecipe