/// import { BoxProps } from '../Box'; export declare type LocalImageProps = { src: string; /** How the image fits its bounds */ fit?: 'cover' | 'contain'; /** Positioning of the fitted image. Value can be "top", "left", "center", "right", "bottom" or an "x y" coordinate */ fitPosition?: string; /** Fix the width of the image. It will not be responsive. */ isFixed?: boolean; }; export declare type ImageProps = BoxProps & React.ImgHTMLAttributes & LocalImageProps; export declare const Image: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; /** Positioning of the fitted image. Value can be "top", "left", "center", "right", "bottom" or an "x y" coordinate */ }) => any; };