import { SelectOption } from '@mui/base';
import { SelectItem } from '../types';
type SelectValueProps = {
    selectedOptionLabel: SelectOption<string | number> | null;
    items: SelectItem[];
    placeholder?: string;
};
export declare function SelectValue({ selectedOptionLabel, items, placeholder, }: SelectValueProps): import("react/jsx-runtime").JSX.Element;
export {};
