import { ElementType } from "react"; import { FieldProps, ConjsProps, SwitchProps, ButtonProps, ButtonGroupProps, ProviderProps, ValueSourcesProps, ConfirmFunc, BooleanWidgetProps, TextWidgetProps, DateTimeWidgetProps, SelectWidgetProps, NumberWidgetProps, PriceWidgetProps } from "@react-awesome-query-builder/ui"; export interface FluentUIWidgets { // core widgets FluentUIFieldSelect: ElementType, FluentUIConjs: ElementType, FluentUIButton: ElementType, FluentUIButtonGroup: ElementType, FluentUIProvider: ElementType, FluentUIValueSources: ElementType, FluentUIConfirm: ConfirmFunc, FluentUIUseConfirm: () => ConfirmFunc, // core widgets FluentUIBooleanWidget: ElementType, FluentUITextWidget: ElementType, FluentUITextAreaWidget: ElementType, FluentUIDateWidget: ElementType, FluentUITimeWidget: ElementType, FluentUIDateTimeWidget: ElementType, FluentUIMultiSelectWidget: ElementType, FluentUISelectWidget: ElementType, FluentUINumberWidget: ElementType, FluentUIPriceWidget: ElementType; FluentUISliderWidget: ElementType, } export declare const FluentUIWidgets: FluentUIWidgets; export default FluentUIWidgets;