import { Binding } from './binding'; /** * ObjectStyleBinding — handles `:style=${{ color: 'red', fontSize: '16px' }}` * * Accepts a Record. Properties present in the map are set on * element.style; properties that were set in the previous render but are absent * from the new map are removed. */ export declare class ObjectStyleBinding implements Binding { private readonly element; private previousKeys; constructor(element: HTMLElement); setValue(value: unknown): Promise; clear(): void; } //# sourceMappingURL=object-style-binding.d.ts.map