import type { ComponentType } from 'react' import type { HTMLAttrs } from './common' export interface ResponsiveImageProps extends HTMLAttrs { xsSrc: string smSrc: string mdSrc?: string lgSrc?: string xlSrc?: string alt: string loading?: 'eager' | 'lazy' tokens?: Record } export declare const ResponsiveImage: ComponentType