5 lines
232 B
TypeScript
5 lines
232 B
TypeScript
import type { CommandInputProps } from "../types.js";
|
|
declare const CommandInput: import("svelte").Component<CommandInputProps, {}, "value" | "ref">;
|
|
type CommandInput = ReturnType<typeof CommandInput>;
|
|
export default CommandInput;
|