UNPKG

rightui

Version:

Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity

12 lines (11 loc) 433 B
import type { HTMLInputAttributes, HTMLInputTypeAttribute } from "svelte/elements"; type InputType = Exclude<HTMLInputTypeAttribute, "file">; declare const Input: import("svelte").Component<WithElementRef<Omit<HTMLInputAttributes, "type"> & ({ type: "file"; files?: FileList; } | { type?: InputType; files?: undefined; })>, {}, "value" | "ref" | "files">; type Input = ReturnType<typeof Input>; export default Input;