export interface ImageModeProps { /** * The default color mode to use when no matching source is found. */ defaultColorMode?: string; /** * The default image source URL, used as fallback when no matching color mode source exists. */ src?: string; /** * Alternative text description of the image for accessibility. */ alt?: string; /** * The intrinsic height of the image in pixels or CSS units. */ height?: string | number; /** * The intrinsic width of the image in pixels or CSS units. */ width?: string | number; /** * CSS classes to apply to the inner img element. */ imageClass?: string | string[] | Record; } declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import('../../../node_modules/vue').DefineComponent & Readonly<{}>, { width: string | number; height: string | number; src: string; alt: string; defaultColorMode: string; imageClass: string | string[] | Record; }, {}, {}, {}, string, import('../../../node_modules/vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };