import * as React from 'react'; import { SelectedValue } from './SelectContext'; export interface SelectSelectedProps { children?: React.ReactNode | ((selected: SelectedValue) => React.ReactNode); onlyShowSingleSelected?: boolean; } export declare function SelectSelected(props: SelectSelectedProps): import("react/jsx-runtime").JSX.Element | null; export declare namespace SelectSelected { var displayName: string; }