import { ComponentProps, ReactNode } from 'react'; import { ItemType } from './types'; type ValueType = Omit; type SelectValueProps = ComponentProps<'span'> & { placeholder?: string; children?: ((value?: ValueType | ValueType[]) => ReactNode) | ReactNode; className?: string; }; export declare function SelectValue({ children, placeholder, className, ...props }: SelectValueProps): import("react/jsx-runtime").JSX.Element; export declare namespace SelectValue { var displayName: string; } export {}; //# sourceMappingURL=select-value.d.ts.map