import { PropType } from 'vue'; export declare const props: { src: StringConstructor; alt: StringConstructor; fit: PropType<"fill" | "none" | "contain" | "cover" | "scale-down">; position: PropType<"left" | "right" | "center" | "bottom" | "top">; round: BooleanConstructor; width: (StringConstructor | NumberConstructor)[]; height: (StringConstructor | NumberConstructor)[]; radius: (StringConstructor | NumberConstructor)[]; lazyLoad: BooleanConstructor; iconSize: (StringConstructor | NumberConstructor)[]; showError: { type: BooleanConstructor; default: boolean; }; errorIcon: { type: StringConstructor; default: string; }; iconPrefix: StringConstructor; showLoading: { type: BooleanConstructor; default: true; }; loadingIcon: { type: StringConstructor; default: string; }; };