import React from 'react'; import { ImageBackgroundProps, ImageProps } from 'react-native'; export type MemoryImageProps = ImageProps & { src: string; enableMemory?: string[]; }; export declare const MemoryImage: React.FC; export type MemoryBackgroundImageProps = ImageBackgroundProps & { src: string; enableMemory?: string[]; }; export declare const MemoryBackgroundImage: React.FC; declare const _default: { MemoryBackgroundImage: React.FC; MemoryImage: React.FC; }; export default _default;