/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface SelectVariant { /** * @default "outline" */ variant: "outline" | "ghost" /** * @default "md" */ size: "sm" | "md" | "lg" } type SelectVariantMap = { [key in keyof SelectVariant]: Array } export type SelectVariantProps = { [key in keyof SelectVariant]?: ConditionalValue | undefined } export interface SelectRecipe { __type: SelectVariantProps (props?: SelectVariantProps): Pretty> raw: (props?: SelectVariantProps) => SelectVariantProps variantMap: SelectVariantMap variantKeys: Array splitVariantProps(props: Props): [SelectVariantProps, Pretty>] getVariantProps: (props?: SelectVariantProps) => SelectVariantProps } export declare const select: SelectRecipe