import React from 'react';
declare global {
    interface Window {
        __RENDERER_BYPASS_BREAKOUT_SSR__?: boolean;
    }
}
/**
 * Inline Script that updates breakout node width on client side,
 * before main JavaScript bundle is ready.
 * More info: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1216218119/Renderer+SSR+for+Breakout+Nodes
 */
export declare function BreakoutSSRInlineScript({ noOpSSRInlineScript, }: {
    noOpSSRInlineScript: Boolean;
}): React.JSX.Element | null;
export declare function createBreakoutInlineScript(id: number, shouldSkipScript: {
    table: boolean;
}): string;
export declare const breakoutInlineScriptContext: string;
export declare const calcLineLength: () => number;
