import type { FC, PropsWithChildren } from 'react'; import { type SelectSharedContextValue } from './SelectSharedContext'; interface SelectSharedProviderProps { value: SelectSharedContextValue; } export declare const SelectSharedProvider: FC>; export {};