import { FormInstance, InputProps, FormItemProps, SelectProps } from 'antd'; import React from 'react'; import type { DefaultOptionType } from 'antd/es/select'; type FilterFunc = (input: string, option?: T) => boolean; export default function FormInputGroup({ prefixName, name, title, optionalTitle, prefixOptions, defaultPrefix, placeholder, form, style, type, required, readOnly, disabled, isTextInputError, antdInputProps, andtFormItemProps, showPrefixSearch, filterOption, prefixPosition, prefixFormItemProps, prefixSelectProps, inputType, tooltipContent, }: { prefixName: string | number; name: string | number; title?: string; inputType?: string; optionalTitle?: string; prefixOptions: { id: string; label: string | React.ReactNode; phone_code?: string | number; }[]; defaultPrefix: string; placeholder?: string; form: FormInstance; style?: object; type?: 'text' | 'number' | 'input' | 'decimal'; required?: boolean; readOnly?: boolean; disabled?: boolean; isTextInputError?: boolean | undefined; antdInputProps?: InputProps; andtFormItemProps?: FormItemProps; showPrefixSearch?: boolean; filterOption?: FilterFunc; prefixPosition?: 'left' | 'right'; prefixFormItemProps?: FormItemProps; prefixSelectProps?: SelectProps; tooltipContent?: string; }): import("react/jsx-runtime").JSX.Element; export {};