import { ComputedRef, InjectionKey } from 'vue';
/**
 * Enforced dark / light theme state
 *
 * This is internal only.
 */
export declare const INJECTION_KEY_THEME: InjectionKey<ComputedRef<'light' | 'dark' | ''> | undefined>;
