import React from "react"; //#region src/script.d.ts type ArkEnvScriptProps = { /** * Optional custom environment variable map. If provided, any keys starting * with `NEXT_PUBLIC_` will be merged with public keys from `process.env`. */ env?: Record; }; /** * A React Component to serialize and inject NEXT_PUBLIC_* environment variables into the browser * during Server-Side Rendering (SSR). Placed in your root layout (layout.tsx), it sets * globalThis.__arkenv_env__ to ensure client-side components have access to runtime environment values. */ declare function ArkEnvScript({ env }?: ArkEnvScriptProps): React.ReactElement; //#endregion export { ArkEnvScriptProps as n, ArkEnvScript as t }; //# sourceMappingURL=script-C06S6xXP.d.cts.map