import * as lit_html from 'lit-html';
import { LitElement } from 'lit';
import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js';
interface ImgAttributes {
block?: string | boolean;
responsive?: string | boolean;
aspectRatio?: string;
radius?: string | boolean;
objectFit?: 'cover' | 'contain';
objectPosition?: string;
}
declare class Img extends LitElement {
ariaHidden: string | null;
block?: string | boolean;
responsive?: string | boolean;
aspectRatio?: string;
radius?: string | boolean;
objectFit?: 'fill' | 'cover' | 'contain';
objectPosition: string;
render(): lit_html.TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'dmd-img': ImgAttributes;
}
}
declare module 'react' {
namespace JSX {
interface IntrinsicElements {
'dmd-img': JSXCustomElement;
}
}
}
export { Img, type ImgAttributes };