import { SvelteComponentTyped } from "svelte"; import type { NodeProp } from "../TreeLib/TreeNode"; declare const __propDef: { props: { prop?: NodeProp | null | undefined; txtSize?: string | undefined; colorBg?: string | undefined; colorHover?: string | undefined; colorTxt?: string | undefined; colorTxtSel?: string | undefined; colorBgSel?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PropCtrlProps = typeof __propDef.props; export type PropCtrlEvents = typeof __propDef.events; export type PropCtrlSlots = typeof __propDef.slots; export default class PropCtrl extends SvelteComponentTyped { } export {};