import React from "react";

//#region src/shims/before-interactive-context.d.ts
/**
 * A `<Script strategy="beforeInteractive">` captured during SSR.
 *
 * The Script shim hands these records to the SSR pipeline through
 * `BeforeInteractiveContext` instead of rendering the `<script>` tag inline.
 * The pipeline then emits the captured tag immediately after `<head>` opens,
 * so the script runs before any React-hoisted stylesheets or modulepreload
 * links. Matches the standard no-flash dark-mode pattern.
 *
 * Both inline (`children`/`dangerouslySetInnerHTML`) and external (`src`)
 * beforeInteractive scripts flow through here, mirroring Next.js which registers
 * inline and src beforeInteractive scripts equally in the App Router runtime
 * (`(self.__next_s=...).push(...)`). An entry has `src` set for external
 * scripts and `innerHTML` set for inline scripts (never both).
 */
type BeforeInteractiveInlineScript = {
  /** Optional id attribute. */id?: string; /** External script URL. Set for src beforeInteractive scripts. */
  src?: string;
  /**
   * Pre-escaped inline content (already passed through `escapeInlineContent`).
   * Set for inline beforeInteractive scripts; omitted for src scripts.
   */
  innerHTML?: string; /** Nonce to emit on the `<script>` tag, when CSP is enabled. */
  nonce?: string;
  /**
   * Additional HTML attributes to emit on the tag. Booleans render as the
   * bare attribute name; strings render as `name="value"`. Reserved keys
   * (id, nonce, src, children, dangerouslySetInnerHTML, strategy) are
   * filtered out by the registrar.
   */
  attributes?: Record<string, string | boolean>;
};
type RegisterBeforeInteractiveInlineScript = (script: BeforeInteractiveInlineScript) => void;
declare const BeforeInteractiveContext: React.Context<RegisterBeforeInteractiveInlineScript | null>;
declare function useBeforeInteractiveRegister(): RegisterBeforeInteractiveInlineScript | null;
//#endregion
export { BeforeInteractiveContext, BeforeInteractiveInlineScript, RegisterBeforeInteractiveInlineScript, useBeforeInteractiveRegister };