import type { ObservableOptions } from "../types.js"; export interface CSSStyleObject { [key: string]: string | number; } export type CSSStyleValue = string | CSSStyleObject; export declare const HtmlStyle: ObservableOptions;