import { SvelteComponent } from "svelte"; import { type Obstacle } from '../..'; declare const __propDef: { props: { /** The obstacle name. */ name: string; /** Fired when obstacles are created, destroyed, or edited. */ onUpdate: (payload: Obstacle) => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ObstacleProps = typeof __propDef.props; export type ObstacleEvents = typeof __propDef.events; export type ObstacleSlots = typeof __propDef.slots; export default class Obstacle extends SvelteComponent { } export {};