import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type ImageParts = { image: ''; }; declare type ImageDOMProps = React.ComponentPropsWithRef<'img'>; declare type ImageStyleConfigProp = { styleConfig?: StyleConfig; }; declare type ImageSystemProps = BoxSystemProps; export declare type ImageProps = ImageDOMProps & ImageStyleConfigProp & ImageSystemProps; export declare const Image: React.ForwardRefExoticComponent & React.RefAttributes>; export {};