import type { ESLBaseElementShape } from '../../esl-base-element/core/esl-base-element.shape';
import type { ESLImage } from './esl-image';
/**
 * Tag declaration interface of ESL Image element
 * Used for TSX declaration
 */
export interface ESLImageTagShape extends ESLBaseElementShape<ESLImage> {
    /** Define {@link ESLMediaRuleList} query for image source */
    'data-src': string;
    /** Define image alt text */
    alt: string;
    /** Define image rendering mode */
    mode?: string;
    /** Define source base path */
    'data-src-base'?: string;
    /** Define loading mode of the image */
    lazy?: boolean | 'none' | 'manual' | 'auto';
    /** Define load-allowed marker for lazy images */
    'lazy-triggered'?: boolean;
    /** Define query change behavior */
    'refresh-on-update'?: boolean;
    /** Define CSS class for inner image */
    'inner-image-class'?: string;
    /** Children are not allowed for ESLImage */
    children?: never[];
}
