import { ConfigPlugin } from "@expo/config-plugins"; type Platform = "ios" | "android"; type Icon = { image: string; prerendered?: boolean; platforms?: Platform[]; }; type IconSet = Record; declare const withDynamicIcon: ConfigPlugin; export default withDynamicIcon;