import { SvelteComponent } from "svelte"; import type { LightShadow } from 'three'; declare const __propDef: { props: { object: LightShadow; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type ShadowProps = typeof __propDef.props; export type ShadowEvents = typeof __propDef.events; export type ShadowSlots = typeof __propDef.slots; export default class Shadow extends SvelteComponent { } export {};