1 | import { Module } from "./module.js";
|
2 | export type ElementStyle = Partial<CSSStyleDeclaration>;
|
3 | export type VNodeStyle = ElementStyle & Record<string, string> & {
|
4 | delayed?: ElementStyle & Record<string, string>;
|
5 | remove?: ElementStyle & Record<string, string>;
|
6 | };
|
7 | export declare const styleModule: Module;
|