import type { CssProp } from '../types/node.type.js';
export declare function getServerEmotionCache(): import("@emotion/utils").EmotionCache;
/**
 * Compiles an Emotion-compatible css object to a stable className in server paths
 * without relying on @emotion/react runtime APIs.
 */
export declare function compileServerEmotionClassName(css: CssProp): string | undefined;
/**
 * Consumes pending server-compiled Emotion rules for injection into SSR output.
 * Rules are drained so each request only emits newly added styles once.
 */
export declare function consumeServerEmotionRules(): Array<{
    id: string;
    cssText: string;
}>;
//# sourceMappingURL=server-emotion.util.d.ts.map