import { UtilityEngine } from '../utilities/utility-engine'; import { EffectsEngine } from '../effects'; import { StatesEngine } from '../states'; import { TransformEngine } from '../transforms'; import { DisplayEngine } from '../display'; import { BorderEngine } from '../borders'; import { AnimationEngine } from '../animations'; import { Typography } from '../typography'; import { ColorManager } from '../colors'; export declare class FluentCSS { utilities: UtilityEngine; effects: EffectsEngine; states: StatesEngine; transforms: TransformEngine; display: DisplayEngine; borders: BorderEngine; animations: AnimationEngine; typography: Typography; colors: ColorManager; constructor(element: HTMLElement); flex(): this; grid(): this; block(): this; hidden(): this; relative(): this; absolute(): this; fixed(): this; p(value: string | number): this; m(value: string | number): this; px(value: string | number): this; py(value: string | number): this; bg(palette: string, level: string): this; text(palette: string, level: string): this; border(width: string, style?: string, color?: string): this; rounded(value?: string): this; shadow(value?: string): this; scale(value: number): this; rotate(value: string): this; fadeIn(): this; slideUp(): this; destroy(): void; } export declare function css(element: HTMLElement | string): FluentCSS; export declare function cssAll(selector: string): FluentCSS[]; //# sourceMappingURL=index.d.ts.map