///
import { Omit } from '@bluebase/core';
import { ImageProps } from './Image';
export interface BlueBaseImageProps extends Omit {
/**
* BlueBase registry key
*
* @deprecated
*/
resolve?: string | string[];
/** Image source or BlueBase registry key */
source?: ImageProps['source'] | string | string[];
}
/**
* # 🖼 BlueBaseImage
*
* A drop in replacement for React Native's Image component.
* Adds ability to display image stored in BlueBase Asset Registry.
*
* ## Usage
* ```jsx
```
*/
export declare const BlueBaseImage: import("react").ComponentType;