import type { ImageStyle } from 'react-native'; interface ImageProps { src?: string; alt?: string; width?: number; height?: number; aspectRatio?: number; placeholder?: string; resizeMode?: 'cover' | 'contain' | 'stretch' | 'center'; style?: ImageStyle; testID?: string; _tokens?: Record; } export declare function Image({ src, alt, width, height, aspectRatio, placeholder, resizeMode, style, testID, _tokens }: ImageProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=image.d.ts.map