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