import StandaloneContext from './StandaloneContext';
/**
 * Based on keys in the given context.config,
 * ensure that the proper iOS icon images exist -- assuming Info.plist already
 * points at them under CFBundleIcons.CFBundlePrimaryIcon.CFBundleIconFiles.
 *
 * This only works on MacOS (as far as I know) because it uses the sips utility.
 */
declare function createAndWriteIconsToPathAsync(context: StandaloneContext, destinationIconPath: string): Promise<void>;
export { createAndWriteIconsToPathAsync };