import { CurrentTheme } from 'itlab-theme-system'; import { Plugin, Reactive, Ref, ShallowReactive } from 'vue'; type ElementState = { isIntersecting: boolean; theme?: CurrentTheme; }; export type HeaderThemeRegistry = ShallowReactive>>; export declare function useHeaderThemePlugin(): { registry: ShallowReactive>; theme: Ref; }; export declare const HeaderThemePlugin: Plugin<[]>; export {};