interface Props { title?: string; description?: string; icon?: string | object; lottiePath?: string; lottieData?: any; animationTitle?: string; size?: "default" | "sm" | "lg"; variant?: "default" | "muted"; loop?: boolean | number; animateOnHover?: boolean; autoPlay?: boolean; class?: string; iconClass?: string; titleClass?: string; descriptionClass?: string; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { icon?(_: {}): any; title?(_: {}): any; description?(_: {}): any; actions?(_: {}): any; extra?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, { title: string; variant: "default" | "muted"; size: "default" | "sm" | "lg"; loop: boolean | number; autoPlay: boolean; animateOnHover: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };