import { PropsWithChildren } from 'react'; type ProviderScopeProps = { value: T; name?: string; }; declare function ProviderScope({ children, value, name }: PropsWithChildren>): import("react").JSX.Element; export { ProviderScope }; export type { ProviderScopeProps };