import { SvelteComponentTyped } from "svelte"; import type { NodePropSelect } from "./PropNode"; declare const __propDef: { props: { prop: NodePropSelect; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PropSelectProps = typeof __propDef.props; export type PropSelectEvents = typeof __propDef.events; export type PropSelectSlots = typeof __propDef.slots; export default class PropSelect extends SvelteComponentTyped { } export {};