import React from 'react'; import { VistaComboboxV1Props } from '../type/vista-combobox-type'; import { VistaCheckboxV2Props, VistaCheckboxV3Props } from '../type/vista-checkbox-type'; import { ButtonV1, CheckboxV1, DividerV4, RadioV1, SelectV1, TextAreaV1, TextInputV1, ToggleV1, UploadV1 } from '../type/vista-form-elements'; export declare enum VISTA_FORM_ELEMENTS { AUDIO_V1 = "AUDIO_V1", BUTTON_V1 = "BUTTON_V1", CHECKBOX_V1 = "CHECKBOX_V1", CHECKBOX_V2 = "CHECKBOX_V2", CHECKBOX_V3 = "CHECKBOX_V3", COMBOBOX_V1 = "COMBOBOX_V1", DIVIDER_V4 = "DIVIDER_V4", RADIO_V1 = "RADIO_V1", SELECT_V1 = "SELECT_V1", TEXT_AREA_V1 = "TEXT_AREA_V1", TEXT_INPUT_V1 = "TEXT_INPUT_V1", TOGGLE_V1 = "TOGGLE_V1", UPLOAD_V1 = "UPLOAD_V1" } export declare const vistaFormSchema: { AUDIO_V1: (props: object) => React.JSX.Element; BUTTON_V1: (props: ButtonV1) => React.JSX.Element; CHECKBOX_V1: (props: CheckboxV1) => React.JSX.Element; CHECKBOX_V2: (props: VistaCheckboxV2Props) => React.JSX.Element; CHECKBOX_V3: (props: VistaCheckboxV3Props) => React.JSX.Element; COMBOBOX_V1: (props: VistaComboboxV1Props) => React.JSX.Element; DIVIDER_V4: (props: DividerV4) => React.JSX.Element; RADIO_V1: (props: RadioV1) => React.JSX.Element; SELECT_V1: (props: SelectV1) => React.JSX.Element; TEXT_AREA_V1: (props: TextAreaV1) => React.JSX.Element; TEXT_INPUT_V1: (props: TextInputV1) => React.JSX.Element; TOGGLE_V1: (props: ToggleV1) => React.JSX.Element; UPLOAD_V1: (props: UploadV1) => React.JSX.Element; };