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