import { FormItemProps, SelectProps } from 'antd'; import { NamePath } from 'antd/es/form/interface'; import { DefaultOptionType } from 'antd/es/select'; type PropTypes = { name?: NamePath; title?: NamePath | undefined; optionalTitle?: string; disabled?: boolean; placeHolder?: string | undefined; antdSelectProps?: SelectProps; andtFormItemProps?: FormItemProps; optionsSelect?: DefaultOptionType[]; showErrorMessage?: boolean; required?: boolean; requiredErrorMessage?: string; tooltipContent?: string; }; declare const FormSelect: ({ name, title, optionalTitle, disabled, placeHolder, antdSelectProps, andtFormItemProps, optionsSelect, showErrorMessage, required, requiredErrorMessage, tooltipContent, }: PropTypes) => import("react/jsx-runtime").JSX.Element; export default FormSelect;