import { type ReactNode, type ReactElement } from 'react'; import type { GroupBase, ValueContainerProps as ReactSelectValueContainerProps } from 'react-select'; type ValueContainerProps> = ReactSelectValueContainerProps; /** * Typeguard that will check if a ReactElement is a `ValueContainer` * @internal */ export declare function _isValueContainerComponent>(element: ReactNode): element is ReactElement>; export declare function ValueContainer>(props: Readonly>): import("react/jsx-runtime").JSX.Element; export {};