import React from 'react'; import { AnimationOpts } from './useAnimation'; export interface MyViewProps { style: React.CSSProperties; className: string; visible: boolean; backgroundType?: any; appId?: string; loading?: boolean; getEngineApis?: any; } export interface AnimationProps extends MyViewProps, AnimationOpts { } declare const Animation: React.ForwardRefExoticComponent>; export default Animation;