import { SvelteComponent } from "svelte"; import type { InputEvents, InputProps } from '../types.js'; declare const __propDef: { props: InputProps; slots: { default: { action: (node: HTMLInputElement) => { destroy: VoidFunction; } | undefined; attrs: Record; }; }; events: InputEvents; }; export type CommandInputProps = typeof __propDef.props; export type CommandInputEvents = typeof __propDef.events; export type CommandInputSlots = typeof __propDef.slots; export default class CommandInput extends SvelteComponent { } export {};