1082815dcSEvan Baconimport { ExpoConfig } from '@expo/config-types'; 2082815dcSEvan Baconimport { AndroidManifest } from './Manifest'; 3*e501a7c6SGabriel Donadel Dall'Agnolexport declare const withAllowBackup: import("..").ConfigPlugin; 4082815dcSEvan Baconexport declare function getAllowBackup(config: Pick<ExpoConfig, 'android'>): boolean; 5082815dcSEvan Baconexport declare function setAllowBackup(config: Pick<ExpoConfig, 'android'>, androidManifest: AndroidManifest): AndroidManifest; 6082815dcSEvan Baconexport declare function getAllowBackupFromManifest(androidManifest: AndroidManifest): boolean | null; 7