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