1import { ExpoConfig } from 'expo/config';
2import { AndroidConfig, ConfigPlugin } from 'expo/config-plugins';
3import { NotificationsPluginProps } from './withNotifications';
4type DPIString = 'mdpi' | 'hdpi' | 'xhdpi' | 'xxhdpi' | 'xxxhdpi';
5type dpiMap = Record<DPIString, {
6    folderName: string;
7    scale: number;
8}>;
9export declare const ANDROID_RES_PATH = "android/app/src/main/res/";
10export declare const dpiValues: dpiMap;
11export declare const META_DATA_NOTIFICATION_ICON = "expo.modules.notifications.default_notification_icon";
12export declare const META_DATA_NOTIFICATION_ICON_COLOR = "expo.modules.notifications.default_notification_color";
13export declare const NOTIFICATION_ICON = "notification_icon";
14export declare const NOTIFICATION_ICON_RESOURCE: string;
15export declare const NOTIFICATION_ICON_COLOR = "notification_icon_color";
16export declare const NOTIFICATION_ICON_COLOR_RESOURCE: string;
17export declare const withNotificationIcons: ConfigPlugin<{
18    icon: string | null;
19}>;
20export declare const withNotificationIconColor: ConfigPlugin<{
21    color: string | null;
22}>;
23export declare const withNotificationManifest: ConfigPlugin<{
24    icon: string | null;
25    color: string | null;
26}>;
27export declare const withNotificationSounds: ConfigPlugin<{
28    sounds: string[];
29}>;
30export declare function getNotificationIcon(config: ExpoConfig): string | null;
31export declare function getNotificationColor(config: ExpoConfig): string | null;
32export declare function setNotificationIconColor(color: string | null, colors: AndroidConfig.Resources.ResourceXML): AndroidConfig.Resources.ResourceXML;
33/**
34 * Applies notification icon configuration for expo-notifications
35 */
36export declare function setNotificationIconAsync(projectRoot: string, icon: string | null): Promise<void>;
37/**
38 * Save sound files to `<project-root>/android/app/src/main/res/raw`
39 */
40export declare function setNotificationSounds(projectRoot: string, sounds: string[]): void;
41export declare const withNotificationsAndroid: ConfigPlugin<NotificationsPluginProps>;
42export {};
43