import type { DefineComponent } from "vue"; /** Empty component props */ export interface EmptyProps { description?: string; image?: string; imageStyle?: Record; } /** Empty Vue 3 component */ declare const Empty: DefineComponent; export default Empty;