import type { ImageSourcePropType } from 'react-native'; /** * Image props accept either a remote URI string or a bundled asset from * `require('./photo.png')`. Normalize both into an RN `source` value. */ export declare function resolveImageSource(src: string | ImageSourcePropType | undefined): ImageSourcePropType | undefined;