import { ClassComponent } from '../../components/ts-helpers.d'; export interface AnimationDefaultConfig { libPath: 'supplyasset' | 'workspace' | 'admin'; } export interface AnimationProps { animation: 'no-data' | 'loading-plane' | 'loading-page' | 'loading-table'; } /** * **WangsVue - Animation** * * _Animation is a lottie animation wrapper._ * * @group Component */ declare class Animation extends ClassComponent< AnimationProps, unknown, unknown > {} export default Animation;