import { SvelteComponentTyped } from "svelte"; import type { InstanceProperties } from '../types/components'; import type { ThreltePointerEvent } from '../types/types'; declare const __propDef: { props: { position?: InstanceProperties['position']; scale?: InstanceProperties['scale']; rotation?: InstanceProperties['rotation']; lookAt?: InstanceProperties['lookAt']; color?: InstanceProperties['color']; id?: InstanceProperties['id']; }; events: { click: CustomEvent; contextmenu: CustomEvent; pointerup: CustomEvent; pointerdown: CustomEvent; pointerenter: CustomEvent; pointerleave: CustomEvent; pointermove: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type InstanceProps = typeof __propDef.props; export declare type InstanceEvents = typeof __propDef.events; export declare type InstanceSlots = typeof __propDef.slots; export default class Instance extends SvelteComponentTyped { } export {};