import { Omit } from '@bluebase/core'; import React from 'react'; import { ImageBackgroundProps as NImageBackgroundProps, ImageProps as NImageProps } from 'react-native'; export interface BlueBaseImageBackgroundProps extends Omit { /** Image source or BlueBase registry key */ source?: NImageProps['source'] | string | string[]; children?: React.ReactNode; } /** * # 🖼 BlueBaseImageBackground * * A drop in replacement for React Native's ImageBackground component. * Adds ability to display image stored in BlueBase Asset Registry. * * ## Usage * ```jsx ``` */ export declare const BlueBaseImageBackground: React.ComponentType; /** * Default props for ImageBackground component */ export declare const BlueBaseImageBackgroundDefaultProps: {};