declare const _default: () => { visitor: { Program: (path: import("@babel/traverse").NodePath, state: any) => void; JSXOpeningElement: (path: import("@babel/traverse").NodePath, state: any) => void; }; }; /** * 启动时: * a.css mtime 10:10 * b.css mtime 10:11 * * 热更新时: * a.css mtime 10:10 不做任何的award-style的babel事情,即state.disable = true * * a.css cache存储 mtime, state.css, state.styleId 主要用于js的bable解析存放css和styleId * * ```json * { * "[ a.js.path ]":"{ css, styleId, dep:{ * a.0.css.path: mtime, * a.1.css.path: mtime * } * }", * "[ b.js.path ]":"{ css, styleId, dep:{ * b.0.css.path: mtime, * b.1.css.path: mtime * } * }" * } * ``` * * b.css mtime 10:20 state.disable = false */ export default _default;