import { ColorThemeType } from '../config.js'; export type ElementUtilsParam = { scale?: number; theme: string; }; export declare class ElementUtils { private flags; theme: string; constructor(flags: ElementUtilsParam); get window(): boolean; applyScaleNum: (value: number) => number; applyScale: (value: number) => string; applyScales: (value: number[]) => string; } export type ElementColorUtilsParam = { scale?: number; theme: string; }; export declare class ElementColorUtils extends ElementUtils { constructor(flags: ElementColorUtilsParam); getColorTheme: () => ColorThemeType; getGradient: () => string; getBoxShadow: () => string; getDark: () => boolean; } //# sourceMappingURL=element.d.ts.map