interface IStyleInterface { width(value: string): this; height(value: string): this; color(value: string): this; getElement(): HTMLElement; } export default class IStyle implements IStyleInterface { private readonly $element; constructor($element: any); width(value: string): this; height(value: string): this; color(value: string): this; left(value: string): this; right(value: string): this; top(value: string): this; bottom(value: string): this; transform(value: string): this; opacity(value: string): this; background(value: string): this; display(value: string): this; flexDirection(value: string): this; justifyContent(value: string): this; alignItems(value: string): this; margin(value: string): this; marginTop(value: string): this; marginBottom(value: string): this; marginLeft(value: string): this; marginRight(value: string): this; padding(value: string): this; paddingTop(value: string): this; paddingBottom(value: string): this; paddingRight(value: string): this; paddingLeft(value: string): this; border(value: string): this; borderTop(value: string): this; borderBottom(value: string): this; borderRight(value: string): this; borderLeft(value: string): this; borderRadius(value: string): this; transition(value: string): this; position(value: string): this; minWidth(value: string): this; minHeight(value: string): this; boxShadow(value: string): this; transformOrigin(value: string): this; cursor(value: string): this; setStyle(value: string): this; getElement(): HTMLElement; } export {};