import { type ReactNode, type ReactElement } from 'react'; import type { GroupBase, ValueContainerProps as ReactSelectValueContainerProps } from 'react-select'; export 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: ValueContainerProps): import("react/jsx-runtime.js").JSX.Element;