import { LooseStyleValue } from '@wakeadmin/element-adapter'; export type NormalizedStyle = Record; /** * 添加单位 * 数字类型默认添加 px,否则 DOM 不能正常识别 * @param value * @param defaultUnit * @returns */ export declare function addUnit(value?: string | number, defaultUnit?: string): string | undefined; /** * 规范化 Vue 的 style props * 支持更加宽松的输入已经兼容 vue2/3 */ export declare function normalizeStyle(...styles: LooseStyleValue[]): NormalizedStyle; export declare function extendStyles>(ele: HTMLElement, styles: T, important?: Set): void; //# sourceMappingURL=style.d.ts.map