declare module "windows.management.update" {
  export class PreviewBuildsManager {
    arePreviewBuildsAllowed: Boolean;
    constructor();

    static getDefault(): PreviewBuildsManager;


    static isSupported(): Boolean;


    syncAsync(callback: (error: Error, result: Boolean) => void): void ;

    getCurrentState(): PreviewBuildsState;

  }

  export class PreviewBuildsState {
    properties: Object;
    constructor();

  }

}



