/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface BaseRangePickerTriggerSlotRecipeVariant { invalid: boolean disabled: boolean size: "small" | "medium" | "large" } type BaseRangePickerTriggerSlotRecipeVariantMap = { [key in keyof BaseRangePickerTriggerSlotRecipeVariant]: Array } type BaseRangePickerTriggerSlotRecipeSlot = "root" | "inputGroup" | "input" | "separator" | "actionIcon" export type BaseRangePickerTriggerSlotRecipeVariantProps = { [key in keyof BaseRangePickerTriggerSlotRecipeVariant]?: ConditionalValue | undefined } export interface BaseRangePickerTriggerSlotRecipeRecipe { __slot: BaseRangePickerTriggerSlotRecipeSlot __type: BaseRangePickerTriggerSlotRecipeVariantProps (props?: BaseRangePickerTriggerSlotRecipeVariantProps): Pretty> raw: (props?: BaseRangePickerTriggerSlotRecipeVariantProps) => BaseRangePickerTriggerSlotRecipeVariantProps variantMap: BaseRangePickerTriggerSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [BaseRangePickerTriggerSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: BaseRangePickerTriggerSlotRecipeVariantProps) => BaseRangePickerTriggerSlotRecipeVariantProps } /** * Slot class created for the MFUI BaseRangePickerTrigger component. */ export declare const baseRangePickerTriggerSlotRecipe: BaseRangePickerTriggerSlotRecipeRecipe