import { OnInit } from '@angular/core'; import { StyleValueTypes } from "../../pipes/style-value.pipe"; import { VerticalAlignmentTypes } from "../../directives/ngx-desktop-vertical-alignment.directive"; import { HorizontalAlignmentTypes } from "../../directives/ngx-desktop-horizontal-alignment.directive"; import { LayoutTypes, OsTypes } from "../../types/types"; import { NgxDesktopService } from "../../ngx-desktop.service"; export declare class WindowComponent implements OnInit { private ngxDesktopService; private _os; set os(os: OsTypes); get os(): OsTypes; label: string; disabled: boolean; background: string; color: string; height: StyleValueTypes; width: StyleValueTypes; verticalAlignment: VerticalAlignmentTypes; horizontalAlignment: HorizontalAlignmentTypes; padding: number | string; paddingTop: number | string; paddingLeft: number | string; paddingRight: number | string; paddingBottom: number | string; layout: LayoutTypes; windowBlur: boolean; constructor(ngxDesktopService: NgxDesktopService); ngOnInit(): void; }