import { ImageProps } from './types/Image.props.ts'; import { FC } from 'react'; /** * `` wrapper with design-token props for `objectFit`, `objectPosition`, * `borderRadius`, spacing, and `backgroundColor`. Dimensional props * (`width`, `height`, `aspectRatio`) are applied as inline styles. * Always provide a meaningful `alt` text. */ declare const Image: FC; export default Image;