import React from 'react'; import { SelectProps } from 'antd'; import type { DefaultOptionType } from 'antd/es/select'; type PopoverSelectOption = DefaultOptionType & { desc?: React.ReactNode; }; interface PopoverSelectProps extends SelectProps { id?: string; options: PopoverSelectOption[]; inline?: boolean; wrapperStyle?: React.CSSProperties; wrapperClassName?: string; popupClassName?: string; } export default function PopoverSelect({ id, options, style: propsStyle, inline, wrapperStyle, wrapperClassName, popupClassName, ...rest }: PopoverSelectProps): import("react/jsx-runtime").JSX.Element; export {};