import { type Config, DotLottie } from '@lottiefiles/dotlottie-web'; interface DotLottieSvelteProps { autoplay?: Config['autoplay']; backgroundColor?: Config['backgroundColor']; data?: Config['data']; loop?: Config['loop']; mode?: Config['mode']; renderConfig?: Config['renderConfig']; segment?: Config['segment']; speed?: Config['speed']; src?: Config['src']; useFrameInterpolation?: Config['useFrameInterpolation']; marker?: Config['marker']; layout?: Config['layout']; animationId?: Config['animationId']; themeId?: Config['themeId']; stateMachineId?: Config['stateMachineId']; stateMachineConfig?: Config['stateMachineConfig']; playOnHover?: boolean; themeData?: string; dotLottieRefCallback?: (dotLottie: DotLottie) => void; } declare const Dotlottie: import("svelte").Component; type Dotlottie = ReturnType; export default Dotlottie;