import type { DefineComponent } from "vue"; /** KImage component props */ export interface KImageProps { alt?: string; src?: string; type?: string; origin?: string; height?: string | number; width?: string | number; placeholder?: string; data?: any[]; imgStyle?: Record; showPanel?: boolean; } /** KImage Vue 3 component */ declare const KImage: DefineComponent; export default KImage;