/// import { ImageProps as RNImageProps } from 'react-native'; import { BoxProps } from '../Box'; export declare type LocalImageProps = { /** How the image fits its bounds */ fit?: RNImageProps['resizeMode']; }; export declare type ImageProps = BoxProps & RNImageProps & LocalImageProps; export declare const Image: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & RNImageProps & LocalImageProps & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };