import { Select, SelectProps } from 'antd'; import { DefaultOptionType } from 'antd/lib/select'; import { BaseSelectRef } from 'rc-select'; import { BaseOptionType } from 'rc-select/lib/Select'; import React, { PropsWithChildren, ReactNode, Ref } from 'react'; export interface Props extends SelectProps { highlightSearch?: boolean; searchLabel?: boolean; tooltip?: boolean | ((option: BaseOptionType | DefaultOptionType) => ReactNode) | ReactNode; tooltipClassName?: string; } declare const ForwardInternalSelect: ((props: Props & { children?: React.ReactNode; } & { ref?: React.Ref | undefined; }) => React.ReactElement) & { displayName?: string | undefined; SECRET_COMBOBOX_MODE_DO_NOT_USE: string; Option: typeof Select.Option; OptGroup: typeof Select.OptGroup; }; export default ForwardInternalSelect;