import { SvelteComponent } from "svelte"; import type { ValueProps } from "../types.js"; declare const __propDef: { props: ValueProps; events: { [evt: string]: CustomEvent; }; slots: { default: { label: string; attrs: Record; }; }; }; export type SelectValueProps = typeof __propDef.props; export type SelectValueEvents = typeof __propDef.events; export type SelectValueSlots = typeof __propDef.slots; export default class SelectValue extends SvelteComponent { } export {};