import * as React from 'react';
import { type BrowserInfo } from './browser';
import { type Direction } from './direction';
export interface SSRWrapperProps {
    userAgent?: string;
    browserInfo?: BrowserInfo;
    direction?: Direction;
    children?: React.ReactNode;
}
/**
 * @see https://vkui.io/overview/ssr
 */
export declare const SSRWrapper: React.FC<SSRWrapperProps>;
//# sourceMappingURL=SSR.d.ts.map