1import { ModPlatform } from '../Plugin.types'; 2/** 3 * Log a warning that doesn't disrupt the spinners. 4 * 5 * ```sh 6 * » android: android.package: property is invalid https://expo.fyi/android-package 7 * ``` 8 * 9 * @param property Name of the config property that triggered the warning (best-effort) 10 * @param text Main warning message 11 * @param link Useful link to resources related to the warning 12 */ 13export declare function addWarningAndroid(property: string, text: string, link?: string): void; 14/** 15 * Log a warning that doesn't disrupt the spinners. 16 * 17 * ```sh 18 * » ios: ios.bundleIdentifier: property is invalid https://expo.fyi/bundle-identifier 19 * ``` 20 * 21 * @param property Name of the config property that triggered the warning (best-effort) 22 * @param text Main warning message 23 * @param link Useful link to resources related to the warning 24 */ 25export declare function addWarningIOS(property: string, text: string, link?: string): void; 26export declare function addWarningForPlatform(platform: ModPlatform, property: string, text: string, link?: string): void; 27