import { type ReactNode } from 'react'; import { type IntlShape } from 'react-intl'; interface Props { children: ReactNode; intl: IntlShape | undefined; } export declare function ExtensionSSRReactContextsProvider({ children, intl }: Props): ReactNode; export {};