import { OnInit } from '@angular/core'; import { LayoutTypes, OsTypes } from "../../types/types"; import { NgxDesktopService } from "../../ngx-desktop.service"; import { StyleValuePipe } from "../../pipes/style-value.pipe"; import { HorizontalAlignmentTypes } from "../../directives/ngx-desktop-horizontal-alignment.directive"; import { VerticalAlignmentTypes } from "../../directives/ngx-desktop-vertical-alignment.directive"; export declare class ViewComponent implements OnInit { private ngxDesktopService; private styleValuePipe; private _os; set os(os: OsTypes); get os(): OsTypes; horizontalAlignment: HorizontalAlignmentTypes; verticalAlignment: VerticalAlignmentTypes; height: string | number; width: string | number; margin: number | string; marginTop: number | string; marginLeft: number | string; marginRight: number | string; marginBottom: number | string; padding: number | string; paddingTop: number | string; paddingLeft: number | string; paddingRight: number | string; paddingBottom: number | string; background: string | boolean; layout: LayoutTypes; constructor(ngxDesktopService: NgxDesktopService, styleValuePipe: StyleValuePipe); ngOnInit(): void; get styleWidth(): any; get styleHeight(): any; }