import { type ReactNode } from 'react';
import { type IntlShape } from 'react-intl';
import { type CardContext } from '@atlaskit/link-provider';
interface Props {
    children: ReactNode;
    intl: IntlShape | undefined;
    smartCardContext: CardContext | undefined;
}
export declare function SmartCardSSRReactContextsProvider({ smartCardContext, children, intl, }: Props): ReactNode;
export {};
