import { type RefParam } from './reactivity/makeRef.js'; type ElementParam = Element | undefined | null; type ClassParam = string | string[] | false | undefined | null; type GlobalClassOptions = { elements: RefParam; class: RefParam; }; export declare function useElementClass(options: GlobalClassOptions): void; export {};