/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DatePickerPanelSlotRecipeVariant { } type DatePickerPanelSlotRecipeVariantMap = { [key in keyof DatePickerPanelSlotRecipeVariant]: Array } type DatePickerPanelSlotRecipeSlot = "root" export type DatePickerPanelSlotRecipeVariantProps = { [key in keyof DatePickerPanelSlotRecipeVariant]?: ConditionalValue | undefined } export interface DatePickerPanelSlotRecipeRecipe { __slot: DatePickerPanelSlotRecipeSlot __type: DatePickerPanelSlotRecipeVariantProps (props?: DatePickerPanelSlotRecipeVariantProps): Pretty> raw: (props?: DatePickerPanelSlotRecipeVariantProps) => DatePickerPanelSlotRecipeVariantProps variantMap: DatePickerPanelSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DatePickerPanelSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DatePickerPanelSlotRecipeVariantProps) => DatePickerPanelSlotRecipeVariantProps } export declare const datePickerPanelSlotRecipe: DatePickerPanelSlotRecipeRecipe