161847f8eSopenharmony_ci/*
261847f8eSopenharmony_ci * Copyright (c) 2022-2023 Huawei Device Co., Ltd.
361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
461847f8eSopenharmony_ci * you may not use this file except in compliance with the License.
561847f8eSopenharmony_ci * You may obtain a copy of the License at
661847f8eSopenharmony_ci *
761847f8eSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
861847f8eSopenharmony_ci *
961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and
1361847f8eSopenharmony_ci * limitations under the License.
1461847f8eSopenharmony_ci */
1561847f8eSopenharmony_ci
1661847f8eSopenharmony_ci/**
1761847f8eSopenharmony_ci * @file
1861847f8eSopenharmony_ci * @kit BasicServicesKit
1961847f8eSopenharmony_ci */
2061847f8eSopenharmony_ci
2161847f8eSopenharmony_ciimport appAccount from '@ohos.account.appAccount';
2261847f8eSopenharmony_ciimport configPolicy from '@ohos.configPolicy';
2361847f8eSopenharmony_ciimport customConfig from '@ohos.customization.customConfig';
2461847f8eSopenharmony_ciimport distributedAccount from '@ohos.account.distributedAccount';
2561847f8eSopenharmony_ciimport osAccount from '@ohos.account.osAccount';
2661847f8eSopenharmony_ciimport PrintExtensionAbility from '@ohos.app.ability.PrintExtensionAbility';
2761847f8eSopenharmony_ciimport { AsyncCallback, BusinessError, Callback, ErrorCallback } from '@ohos.base';
2861847f8eSopenharmony_ciimport batteryInfo from '@ohos.batteryInfo';
2961847f8eSopenharmony_ciimport batteryStats from '@ohos.batteryStatistics';
3061847f8eSopenharmony_ciimport brightness from '@ohos.brightness';
3161847f8eSopenharmony_ciimport charger from '@ohos.charger';
3261847f8eSopenharmony_ciimport deviceAttest from '@ohos.deviceAttest';
3361847f8eSopenharmony_ciimport deviceInfo from '@ohos.deviceInfo';
3461847f8eSopenharmony_ciimport pasteboard from '@ohos.pasteboard';
3561847f8eSopenharmony_ciimport power from '@ohos.power';
3661847f8eSopenharmony_ciimport print from '@ohos.print';
3761847f8eSopenharmony_ciimport request from '@ohos.request';
3861847f8eSopenharmony_ciimport runningLock from '@ohos.runningLock';
3961847f8eSopenharmony_ciimport screenLock from '@ohos.screenLock';
4061847f8eSopenharmony_ciimport settings from '@ohos.settings';
4161847f8eSopenharmony_ciimport systemCapability from '@ohos.systemCapability';
4261847f8eSopenharmony_ciimport systemDateTime from '@ohos.systemDateTime';
4361847f8eSopenharmony_ciimport systemParameter from '@ohos.systemparameter';
4461847f8eSopenharmony_ciimport systemParameterEnhance from '@ohos.systemParameterEnhance';
4561847f8eSopenharmony_ciimport systemTime from '@ohos.systemTime';
4661847f8eSopenharmony_ciimport systemTimer from '@ohos.systemTimer';
4761847f8eSopenharmony_ciimport thermal from '@ohos.thermal';
4861847f8eSopenharmony_ciimport update from '@ohos.update';
4961847f8eSopenharmony_ciimport usb from '@ohos.usb';
5061847f8eSopenharmony_ciimport usbManager from '@ohos.usbManager';
5161847f8eSopenharmony_ciimport wallpaper from '@ohos.wallpaper';
5261847f8eSopenharmony_ciimport WallpaperExtensionAbility from '@ohos.WallpaperExtensionAbility';
5361847f8eSopenharmony_ciimport zlib from '@ohos.zlib';
5461847f8eSopenharmony_ciimport commonEventManager from '@ohos.commonEventManager';
5561847f8eSopenharmony_ciimport emitter from '@ohos.events.emitter';
5661847f8eSopenharmony_ciimport StaticSubscriberExtensionAbility from '@ohos.application.StaticSubscriberExtensionAbility';
5761847f8eSopenharmony_ciimport StaticSubscriberExtensionContext from '@ohos.application.StaticSubscriberExtensionContext';
5861847f8eSopenharmony_ciimport Battery, { BatteryResponse, GetStatusOptions } from '@system.battery';
5961847f8eSopenharmony_ciimport Brightness, {
6061847f8eSopenharmony_ci  BrightnessModeResponse, BrightnessResponse, GetBrightnessModeOptions, GetBrightnessOptions,
6161847f8eSopenharmony_ci  SetBrightnessModeOptions, SetBrightnessOptions, SetKeepScreenOnOptions
6261847f8eSopenharmony_ci} from '@system.brightness';
6361847f8eSopenharmony_ciimport Device, { DeviceResponse, GetDeviceOptions } from '@system.device';
6461847f8eSopenharmony_ciimport Request, {
6561847f8eSopenharmony_ci  DownloadRequestOptions, DownloadResponse, OnDownloadCompleteOptions,
6661847f8eSopenharmony_ci  OnDownloadCompleteResponse, RequestData, RequestFile, UploadRequestOptions, UploadResponse
6761847f8eSopenharmony_ci} from '@system.request';
6861847f8eSopenharmony_ciimport systemLoad from '@ohos.resourceschedule.systemload';
6961847f8eSopenharmony_ciimport intelligentVoice from '@ohos.ai.intelligentVoice';
7061847f8eSopenharmony_ci
7161847f8eSopenharmony_ciexport {
7261847f8eSopenharmony_ci  AsyncCallback, Battery, BatteryResponse, Brightness, BrightnessModeResponse,
7361847f8eSopenharmony_ci  BrightnessResponse, BusinessError, Callback, Device, DeviceResponse,
7461847f8eSopenharmony_ci  DownloadRequestOptions, DownloadResponse, ErrorCallback, GetBrightnessModeOptions,
7561847f8eSopenharmony_ci  GetBrightnessOptions, GetDeviceOptions, GetStatusOptions, OnDownloadCompleteOptions,
7661847f8eSopenharmony_ci  OnDownloadCompleteResponse, PrintExtensionAbility, Request, RequestData, RequestFile,
7761847f8eSopenharmony_ci  SetBrightnessModeOptions, SetBrightnessOptions, SetKeepScreenOnOptions, UploadRequestOptions,
7861847f8eSopenharmony_ci  UploadResponse, WallpaperExtensionAbility, appAccount, batteryInfo, batteryStats, brightness, charger, configPolicy,
7961847f8eSopenharmony_ci  customConfig, deviceAttest, deviceInfo, distributedAccount, osAccount, pasteboard, power, print, request, runningLock,
8061847f8eSopenharmony_ci  screenLock, settings, systemCapability, systemDateTime, systemParameter, systemParameterEnhance, systemTime,
8161847f8eSopenharmony_ci  systemTimer, thermal, update, usb, usbManager, wallpaper, zlib, commonEventManager, emitter, StaticSubscriberExtensionAbility,
8261847f8eSopenharmony_ci  StaticSubscriberExtensionContext, systemLoad, intelligentVoice
8361847f8eSopenharmony_ci};
84