import type { PropsWithChildren } from 'react'; export type WrapperProviderValue = { __wrapper__?: boolean; }; export type WrapperProviderProps = PropsWithChildren; declare const Component: { ({ children, ...value }: WrapperProviderProps): import("react/jsx-runtime").JSX.Element; context: import("react").Context; }; export default Component;