import type { OzenSSRConfig } from './entities';
export type OzenSSRContextValue = {
config: OzenSSRConfig;
};
export declare const OzenSSRContextDefaultValue: OzenSSRContextValue;
export declare const OzenSSRContext: import("react").Context<OzenSSRContextValue>;