import { SvelteComponentTyped } from "svelte"; import { Direction } from './iface.js'; import { type AnimationItem, type RendererType } from 'lottie-web'; declare const __propDef: { props: { [x: string]: any; id?: string | undefined; path: string; container?: HTMLElement | undefined; renderer?: RendererType | undefined; loop?: boolean | undefined; autoplay?: boolean | undefined; name?: string | undefined; speed?: number | undefined; direction?: Direction | undefined; }; events: { animation: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LottieProps = typeof __propDef.props; export declare type LottieEvents = typeof __propDef.events; export declare type LottieSlots = typeof __propDef.slots; export default class Lottie extends SvelteComponentTyped { } export {};