import * as React from 'react'; import { ListContextValue } from '../useList/ListContext'; import { SelectOption } from '../useOption/useOption.types'; import { CompoundComponentContextValue } from '../utils/useCompound'; export type SelectProviderValue = CompoundComponentContextValue> & ListContextValue; export interface SelectProviderProps { value: SelectProviderValue; children: React.ReactNode; } /** * Sets up the contexts for the underlying Option components. * * @ignore - do not document. */ export default function SelectProvider(props: SelectProviderProps): React.JSX.Element;