import type { Config } from '@lottiefiles/dotlottie-web'; import { ClassComponent } from '../ts-helpers.d'; export interface AnimationDefaultConfig { libPath: 'supplyasset' | 'workspace' | 'admin'; } export interface AnimationProps { animation: | 'no-data' | 'loading-plane' | 'loading-page' | 'loading-table' | 'scan-qr'; /** * @default true */ autoplay?: boolean; /** * @default true */ loop?: boolean; /** * Custom configurations for the animation * Reference: https://developers.lottiefiles.com/docs/dotlottie-player/dotlottie-web/api/config/ */ customConfig?: Partial; } /** * **WangsVue - Animation** * * _Animation is a lottie animation wrapper._ * * @group Component */ declare class Animation extends ClassComponent< AnimationProps, unknown, unknown > {} export default Animation;