import { ImageSource } from '@nativescript/core'; export * from './index-common'; export declare namespace AppUtilsAndroid { function listenForWindowInsets(onWindowInsetsChange: (result: [number, number, number, number, number]) => void): void; function prepareWindow(window: android.view.Window): void; function getDimensionFromInt(context: android.content.Context, intToGet: number): number; function getColorFromInt(context: android.content.Context, intToGet: number): number; function getColorFromName(context: android.content.Context, name: string): number; function prepareActivity(activity: androidx.appcompat.app.AppCompatActivity, applyDynamicColors?: boolean): any; function applyDayNight(activity: androidx.appcompat.app.AppCompatActivity, applyDynamicColors: boolean): any; function applyDynamicColors(activity: androidx.appcompat.app.AppCompatActivity): any; } export declare function restartApp(): any; export declare function getISO3Language(lang: any): string; export declare function loadImageSync(imagePath: any, loadOptions?: { width?: any; height?: any; resizeThreshold?: any; sourceWidth?: any; sourceHeight?: any; jpegQuality?: any; }): ImageSource; export declare function loadImage(imagePath: any, loadOptions?: { width?: any; height?: any; resizeThreshold?: any; sourceWidth?: any; sourceHeight?: any; jpegQuality?: any; }): Promise;