import { AnyStandaloneContext } 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: AnyStandaloneContext, destinationIconPath: string): Promise; export { createAndWriteIconsToPathAsync };