import type { ComponentType } from 'react' import type { HTMLAttrs } from './common' export interface ImageProps extends HTMLAttrs { src: string alt: string width: number height?: number loading?: 'eager' | 'lazy' tokens?: Record } export declare const Image: ComponentType