/** @typedef {typeof __propDef.props} DotAnimationStoryProps */ /** @typedef {typeof __propDef.events} DotAnimationStoryEvents */ /** @typedef {typeof __propDef.slots} DotAnimationStorySlots */ export default class DotAnimationStory extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type DotAnimationStoryProps = typeof __propDef.props; export type DotAnimationStoryEvents = typeof __propDef.events; export type DotAnimationStorySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};