import { RegisterOptions } from 'react-hook-form'; import { StylesConfig } from 'react-select'; import { ID } from '@zeniai/client-epic-state'; import { DisableMode } from '../common/common'; /** * Component & its Props */ interface OptionTypeBase { [key: string]: any; } export interface OptionType extends OptionTypeBase { label: string; value: string; additionalNote?: string; isDisabled?: boolean; isOptionRecommended?: boolean; } export interface GroupedOption { label: string; options: OptionType[]; } export interface GroupedSingleSelectFieldValue { allOptions: GroupedOption[]; selectedOption?: string; } interface TooltipProp { sticky: boolean; text: string; } export interface GroupedSingleSelectFieldProps { defaultValue: GroupedSingleSelectFieldValue; name: string; additionalLabelInfo?: string; allowEmpty?: boolean; customPlaceholderString?: string; customStyleConfig?: StylesConfig; isDisabled?: DisableMode; menuPortal?: HTMLElement | null; placeholder?: string; registerOptions?: RegisterOptions; showDownChevronWithValue?: boolean; showEmptyState?: boolean; style?: React.CSSProperties; tooltip?: TooltipProp; disableCurrentOption?: (option: string) => boolean; valueToId?: (value: string) => ID | undefined; valueToInfo?: (value: string) => string; } export declare const GroupedSingleSelectField: ({ name, registerOptions, defaultValue, isDisabled, style, placeholder, valueToInfo, valueToId, showEmptyState, additionalLabelInfo, customStyleConfig, showDownChevronWithValue, customPlaceholderString, allowEmpty, tooltip, menuPortal, disableCurrentOption, }: GroupedSingleSelectFieldProps) => import("react/jsx-runtime").JSX.Element; /** * internal Styled components */ export declare const CustomTooltip: ({ children, title, }: { children: string; title: string; }) => import("react/jsx-runtime").JSX.Element; export {};