import { AutocompleteProps, CheckboxCardProps, CheckboxGroupProps, CheckboxProps, ListBoxProps, NumberFieldProps, PaginationProps, PasswordInputProps, RadioCardProps, RadioProps, SelectProps, SliderProps, SwitchProps, TextFieldProps, TextareaProps } from "../_shared/schemas.mjs"; import { FC } from "react"; import { ComponentRenderProps } from "@openuidev/react-lang"; //#region src/integrations/openui/form-views.d.ts declare const TextFieldView: FC>; declare const CheckboxView: FC>; declare const SwitchView: FC>; declare const SelectView: FC>; declare const TextareaView: FC>; declare const PasswordInputView: FC>; declare const NumberFieldView: FC>; declare const SliderView: FC>; declare const RadioView: FC>; declare const RadioCardView: FC>; declare const CheckboxCardView: FC>; declare const PaginationView: FC>; declare const ListBoxView: FC>; declare const CheckboxGroupView: FC>; declare const AutocompleteView: FC>; //#endregion export { AutocompleteView, CheckboxCardView, CheckboxGroupView, CheckboxView, ListBoxView, NumberFieldView, PaginationView, PasswordInputView, RadioCardView, RadioView, SelectView, SliderView, SwitchView, TextFieldView, TextareaView };