/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface FilterDateRangePickerSlotRecipeVariant { } type FilterDateRangePickerSlotRecipeVariantMap = { [key in keyof FilterDateRangePickerSlotRecipeVariant]: Array } type FilterDateRangePickerSlotRecipeSlot = "wrapper" | "trigger" | "content" | "calendarIcon" | "clearButtonWrapper" | "popoverWrapper" export type FilterDateRangePickerSlotRecipeVariantProps = { [key in keyof FilterDateRangePickerSlotRecipeVariant]?: ConditionalValue | undefined } export interface FilterDateRangePickerSlotRecipeRecipe { __slot: FilterDateRangePickerSlotRecipeSlot __type: FilterDateRangePickerSlotRecipeVariantProps (props?: FilterDateRangePickerSlotRecipeVariantProps): Pretty> raw: (props?: FilterDateRangePickerSlotRecipeVariantProps) => FilterDateRangePickerSlotRecipeVariantProps variantMap: FilterDateRangePickerSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [FilterDateRangePickerSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: FilterDateRangePickerSlotRecipeVariantProps) => FilterDateRangePickerSlotRecipeVariantProps } /** * Slot class created for the MFUI FilterDateRangePicker component. */ export declare const filterDateRangePickerSlotRecipe: FilterDateRangePickerSlotRecipeRecipe