export interface LottieManifestFile { author: string; generator: string; version: number; revision: number; animations?: LottieAnimationManifest[]; images?: []; fonts?: any; js?: any; resources?: any; previews?: any; } export interface LottieAnimationManifest { loop: boolean; themeColor: string; speed: number; id: string; } export interface LottieAnimation { assets: Array>; meta: Record; layers: Array>; } export declare const getAnimationData: (path: string) => Promise; /** * Detect whether the current browser can play webm files */ export declare const canPlayWebm: () => boolean;