import type { VmFit, HandleEvent } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Image from "./src/image"; export declare const VImage: Install, string | null>; readonly alt: BasicType, string | null>; readonly draggable: BasicType; readonly lazy: BasicType; readonly rootMargin: BasicType, string | number | null>; readonly width: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly block: BasicType; readonly fit: BasicType, VmFit | null>; readonly select: BasicType; readonly referrerPolicy: BasicType, string | null>; readonly round: BasicType, string | number | null>; readonly errSrc: BasicType, string | null>; readonly title: BasicType, string | null>; readonly onLoad: BasicType, null>; readonly onError: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string | null>; readonly alt: BasicType, string | null>; readonly draggable: BasicType; readonly lazy: BasicType; readonly rootMargin: BasicType, string | number | null>; readonly width: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly block: BasicType; readonly fit: BasicType, VmFit | null>; readonly select: BasicType; readonly referrerPolicy: BasicType, string | null>; readonly round: BasicType, string | number | null>; readonly errSrc: BasicType, string | null>; readonly title: BasicType, string | null>; readonly onLoad: BasicType, null>; readonly onError: BasicType, null>; }>>, { readonly title: string; readonly round: string | number; readonly width: string | number; readonly src: string; readonly errSrc: string; readonly alt: string; readonly lazy: boolean; readonly fit: VmFit; readonly rootMargin: string | number; readonly onLoad: HandleEvent; readonly onError: HandleEvent; readonly block: boolean; readonly height: string | number; readonly draggable: boolean; readonly select: boolean; readonly referrerPolicy: string; }>>; /** image 组件实例类型 */ export type ImageInstance = InstanceType; export * from './src/interface'; export default VImage;