import type { GlenState } from "./state.js"; type GlenHeaderInput = { readonly key: string; readonly state: GlenState | null; readonly version: string; }; declare const buildGlenHeaders: ({ key, state, version, }: GlenHeaderInput) => Record; export { buildGlenHeaders };