import { SvelteComponentTyped } from "svelte"; import type { NodePropInput } from "./PropNode"; declare const __propDef: { props: { prop: NodePropInput; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PropInputProps = typeof __propDef.props; export type PropInputEvents = typeof __propDef.events; export type PropInputSlots = typeof __propDef.slots; export default class PropInput extends SvelteComponentTyped { } export {};