import { Directive, type PartInfo } from '../index.js'; import type { StandardProperties } from 'csstype'; export type StyleEntry = [key: string, value: string]; type StyleDeclaration = StandardProperties | (Record & {}); export declare class StyleDirective extends Directive { private readonly element; private previousStyle?; constructor(partInfo: PartInfo); render(styles: StyleDeclaration): symbol; } export declare const style: (styles: StyleDeclaration) => import("lit-html/directive.js").DirectiveResult; export {}; //# sourceMappingURL=style.d.ts.map